-
Notifications
You must be signed in to change notification settings - Fork 1
/
navbar.css
72 lines (59 loc) · 1.11 KB
/
navbar.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
66
67
68
69
70
71
72
.navbar {
height: 100px;
background-color: #f06bbd;
z-index: 99;
position: fixed;
width: 100%;
}
.navbar a {
font-family: "Simpson";
_font-size: 2em;
font-size: 3vw;
cursor: pointer;
color: white;
padding: 0 5%;
text-shadow: #ecb243 1px 0 10px;
}
.menu_burger {
display: flex;
flex-wrap: nowrap;
align-items: center;
justify-content: space-evenly;
height: 100%;
}
.button_menu {
display: none;
}
/*Mobile Version */
@media screen and (max-width: 700px) {
.navbar {
margin-bottom: 10%;
}
.menu_burger {
display: none;
}
.button_menu {
display: flex;
align-items: center;
justify-content: center;
height: 100%;
}
.button_menu img {
width: 80px;
}
.menu_burger:target {
display: flex;
flex-direction: column;
position: fixed;
width: 100vw;
height: 100vh;
font-size: 3em;
top: 0;
left: 0;
z-index: 100;
background-color: #f06bbc;
}
.navbar a {
font-size: 1em;
}
}