-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
56 lines (47 loc) · 832 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
56
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
.menu-toggle {
display: none;
}
.menu-btn {
display: none;
cursor: pointer;
padding: 10px;
}
.menu-btn span {
display: block;
width: 25px;
height: 3px;
background-color: #333;
margin: 5px 0;
}
.nav-menu {
list-style-type: none;
padding: 0;
}
.nav-menu li {
display: inline-block;
margin-right: 20px;
}
@media screen and (max-width: 768px) {
.menu-btn {
display: block;
}
.nav-menu {
display: none;
background-color: #f1f1f1;
position: absolute;
width: 100%;
}
.nav-menu li {
display: block;
padding: 10px;
border-bottom: 1px solid #ddd;
}
.menu-toggle:checked~.nav-menu {
display: block;
}
}