-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
102 lines (86 loc) · 1.55 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
body {
padding: 0%;
margin: 0%;
-webkit-box-sizing: border-box;
box-sizing: border-box;
background-color: crimson;
}
#hamburgerMenu {
cursor: pointer;
fill: white;
}
#burgerDiv {
margin-left: 4rem;
margin-top: 4rem;
}
a {
text-decoration: none;
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
color: white;
font-size: 1rem;
}
#navbar {
margin-top: -2.7rem;
margin-left: 4.3rem;
display: none;
}
#navbar ul {
padding: 10px 8px 10px 48px;
}
#navbar ul li:hover {
background-color: crimson;
border-radius: 8px;
}
#navbar ul {
-webkit-animation: FadeIn 0.8s;
animation: FadeIn 0.8s;
background-color: yellowgreen;
border: 1px solid black;
border-radius: 10px;
list-style: none;
}
#navbar ul > li {
margin: 10px 20px 10px 20px;
padding: 5px 20px 5px 20px;
margin-left: -2.5rem;
}
#navbar ul > li > ul {
margin-left: 1.7rem;
position: absolute;
display: inline-block;
}
#navbar #Deep0-ul {
display: inline-block;
margin-top: 2px;
}
#navbar #Deep0-ul .Deep0-li #Deep1-ul {
display: none;
}
#navbar #Deep0-ul .Deep0-li:hover #Deep1-ul {
margin-left: 1rem;
display: initial;
}
#navbar #Deep0-ul .Deep0-li:hover #Deep1-ul .Deep1-li .Deep2-ul {
display: none;
}
#navbar #Deep0-ul .Deep0-li:hover #Deep1-ul .Deep1-li:hover .Deep2-ul {
margin-left: 1rem;
display: initial;
}
@-webkit-keyframes FadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@keyframes FadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
/*# sourceMappingURL=style.css.map */