compass_radix 0.0.11 → 0.0.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -140,6 +140,12 @@
|
|
140
140
|
background-color: $navbarInverseLinkBackgroundActive;
|
141
141
|
}
|
142
142
|
}
|
143
|
+
&.open {
|
144
|
+
> a {
|
145
|
+
background-color: $navbarInverseLinkBackgroundActive;
|
146
|
+
color: $navbarInverseLinkColorActive;
|
147
|
+
}
|
148
|
+
}
|
143
149
|
}
|
144
150
|
}
|
145
151
|
}
|
@@ -168,15 +174,13 @@
|
|
168
174
|
> li {
|
169
175
|
float: left;
|
170
176
|
list-style: none outside none;
|
171
|
-
margin: 0 0
|
177
|
+
margin: 0 0 20px;
|
172
178
|
padding: 0;
|
173
179
|
width: 20%;
|
174
180
|
> a,
|
175
181
|
> span {
|
176
182
|
font-size: 1.0em;
|
177
183
|
font-weight: 700;
|
178
|
-
margin-right: 35px;
|
179
|
-
text-align: right;
|
180
184
|
text-transform: uppercase;
|
181
185
|
}
|
182
186
|
> ul.menu {
|
@@ -1,6 +1,9 @@
|
|
1
1
|
// Menu
|
2
2
|
// Styles for Menus and Navs
|
3
3
|
// --------------------------------------------------
|
4
|
+
|
5
|
+
// Main Menu
|
6
|
+
// --------------------------------------------------
|
4
7
|
@media (max-width: 979px) {
|
5
8
|
#main-menu {
|
6
9
|
float: none;
|
@@ -37,3 +40,36 @@
|
|
37
40
|
overflow: visible !important;
|
38
41
|
}
|
39
42
|
}
|
43
|
+
|
44
|
+
// Footer Menu
|
45
|
+
// --------------------------------------------------
|
46
|
+
|
47
|
+
// Mobile
|
48
|
+
@media (max-width: 767px) {
|
49
|
+
#footer-menu {
|
50
|
+
> ul.menu {
|
51
|
+
> li {
|
52
|
+
float: none;
|
53
|
+
width: 100%;
|
54
|
+
text-align: center;
|
55
|
+
margin: 0 0 30px;
|
56
|
+
padding: 0;
|
57
|
+
> a {
|
58
|
+
text-align: center;
|
59
|
+
display: block;
|
60
|
+
margin-bottom: 10px;
|
61
|
+
}
|
62
|
+
> ul.menu {
|
63
|
+
> li {
|
64
|
+
margin: 0;
|
65
|
+
padding: 0;
|
66
|
+
> a {
|
67
|
+
text-align: center;
|
68
|
+
display: block;
|
69
|
+
}
|
70
|
+
}
|
71
|
+
}
|
72
|
+
}
|
73
|
+
}
|
74
|
+
}
|
75
|
+
}
|