-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathmenubar_mobile.css
More file actions
64 lines (59 loc) · 1.01 KB
/
Copy pathmenubar_mobile.css
File metadata and controls
64 lines (59 loc) · 1.01 KB
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
.hamburger{
height: 21px;
width: 25px;
position: absolute;
top: 90px;
left: 10px;
display: inline-flexbox;
}
.menu{
background-color:rgb(255, 204, 153);
border : 3px solid rgb(255, 153, 102);
display: none;
z-index: 1;
position: absolute;
font-size: 15px;
top: 111px;
left: 10px;
}
.menu ul{
margin-left: -20px;
margin-right: 10px;
}
.hamburger div.top{
border-top: 3px solid black;
height: 12px;
width: 25px;
border-bottom: 3px solid black;
}
div.hamburger:hover{
cursor: pointer;
}
.hamburger div.bottom{
height: 9px;
width: 25px;
border-bottom: 3px solid black;
}
@media screen and (max-width: 565px) {
.hamburger{
top: 75px;
}
.menu{
top: 96px;
}
}
@media screen and (max-width: 440px) {
.hamburger{
top: 70px;
width: 15px;
}
.menu{
top: 84px;
}
.hamburger div.bottom{
height: 6px;
}
.hamburger div.top{
height: 9px;
}
}