-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.scss
90 lines (88 loc) · 1.91 KB
/
style.scss
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
body {
padding: 0%;
margin: 0%;
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;
ul {
padding: 10px 8px 10px 48px;
li {
&:hover {
background-color: crimson;
// border: 1px solid black;
border-radius: 8px;
// margin-left: -2rem;
// margin-right: 2rem;
}
}
}
ul {
animation: FadeIn 0.8s;
background-color: yellowgreen;
border: 1px solid black;
border-radius: 10px;
list-style: none;
> li {
margin: 10px 20px 10px 20px;
padding: 5px 20px 5px 20px;
margin-left: -2.5rem;
> ul {
margin-left: 1.7rem;
position: absolute;
display: inline-block;
}
}
}
#Deep0-ul {
display: inline-block;
margin-top: 2px;
}
#Deep0-ul .Deep0-li #Deep1-ul {
display: none;
}
#Deep0-ul .Deep0-li {
&:hover {
#Deep1-ul {
margin-left: 1rem;
display: initial;
.Deep1-li {
.Deep2-ul {
display: none;
}
&:hover {
.Deep2-ul {
margin-left: 1rem;
display: initial;
}
}
}
}
}
}
}
@keyframes FadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}