-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
55 lines (45 loc) · 872 Bytes
/
style.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
body {
margin: 0;
padding: 0;
font-family: 'Quattrocento Sans', sans-serif;
}
nav {
font-size: larger;
margin: auto;
padding: 0 15px;
width: 80%;
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
}
.brand1 {
font-family: 'Cherry Swash', cursive;
color: tomato;
}
.brand2 {
color: teal;
}
nav ul {
width: 200px;
display: flex;
justify-content: space-between;
list-style: none;
}
nav ul li a {
text-decoration: none;
color: cornflowerblue;
}
nav ul li a:hover {
color:blueviolet;
text-transform: uppercase;
}
.active {
background-color: aqua;
padding: 3px;
}
.active:hover {
background-color:darkseagreen ;
color: blue;
transition: all .5s ease-in-out;
}