Newer
Older
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
@import "helpers/mixins";
@import "helpers/variables";
@import "helpers/functions";
#block-mainnavigation-2 {
.navbar-nav {
li {
border-top: 1px #979797 dotted;
a {
display: inline;
}
}
ul {
display: inherit;
position: inherit;
background: transparent;
border: none;
box-shadow: none;
padding: 0;
list-style-type: none;
li {
a {
color: $black-base;
padding: 5px 5px 5px 35px;
}
}
}
i {
float: right;
margin-top: 8px;
}
&:nth-last-child(1) {
border-bottom: 1px #979797 dotted;
border-top: none;
}
}
.navbar-nav > li > a {
padding-top: 5px;
padding-bottom: 5px;
float: left;
}
}