-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle1.css
50 lines (49 loc) · 811 Bytes
/
style1.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
*{
padding: 0;
margin: 0;
text-decoration: none;
list-style: none;
box-sizing: border-box;
}
body{
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
nav{
background: purple;
height: 60px;
width: 100%;
}
label.logo{
color: bisque;
font-size: 30px;
line-height: 75px;
padding: 0 100px;
font-weight: bold;
}
nav ul{
float: right;
margin-right: 20px;
}
nav ul li{
display: inline-block;
line-height: 75px;
margin: 0 5px;
}
nav ul li a{
color: blanchedalmond;
text-transform: uppercase;
}
a.active,a:hober{
background: #C8A2C8;
transition: .5s;
}
.checkbtn{
font-size: 30px;
color: bisque;
float: right;
line-height: 75px;
margin-right: 1px;
}
#check{
display: none;
}