-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsimplenav.scss
59 lines (50 loc) · 1 KB
/
simplenav.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
$font1: 'Source Sans Pro', sans-serif;
$primary: #3a3a3a;
$accent1: #810000;
$dropdownwidth: 200px;
nav {
ul {
margin: 0;
padding: 0; }
a {
text-decoration: none;
padding: 10px 0px;
box-sizing: border-box;
color: inherit;
display: block;
text-align: center; }
li {
list-style: none;
position: relative;
color: $primary;
font-family: $font1;
font-size: 17px;
display: block;
float: left;
&.active, &:hover {
color: $accent2; }
ul {
display: none;
position: absolute;
box-shadow: 0px 10px 13px -9px #000;
width: $dropdownwidth;
background: #444;
z-index: 200;
li {
margin: 0px;
position: relative;
list-style: none;
ul {
left: $dropdownwidth;
top: 0px; }
}
a {
background-image: none;
background: none;
color: inherit;
height: auto;
padding: 5px 5px;
text-align: left; }
}
}
}