-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
executable file
·65 lines (61 loc) · 1.07 KB
/
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
56
57
58
59
60
61
62
63
64
65
body{
margin: 0;
font-family: 'URW Gothic L', 'Century Gothic', sans-serif;
}
nav{
display: block;
nav .main-menu{
background: #000;
margin: 0;
text-align: center;
padding: 10px;
}
nav > ul .main-menu{
display: inline;
}
nav .main-menu > li{
display: inline;
padding: 10px;
list-style-type: none;
text-decoration: none;
margin: 0 10px;
}
nav a{
padding: 10px;
text-decoration: none;
text-transform: uppercase;
color: #FFFFFF;
margin: 0 10px;
}
#toggle-menu{
display: none;
}
label{
display: none;
}
/* Media Queries */
@media screen and (max-width: 500px) {
nav a{
display: block;
}
nav .main-menu > li{
display: inline;
}
label{
display: block;
font-size: 30px;
text-align: center;
cursor: pointer;
width: 100%;
margin: 0 auto;
color:#FFFFFF;
background: #000000;
}
.main-menu{
text-align: center;
display: none;
}
#toggle-menu:checked + .main-menu{
display: block;
}
}