1
- @use ' ./_variables' as vars ;
1
+ @use ' ./_variables' as * ;
2
2
3
3
html {
4
4
box-sizing : border-box ;
@@ -18,11 +18,11 @@ input,
18
18
optgroup ,
19
19
select ,
20
20
textarea {
21
- font-family : vars . $font-stack ;
21
+ font-family : $font-stack ;
22
22
}
23
23
24
24
a {
25
- color : vars . $link-color ;
25
+ color : $link-color ;
26
26
text-decoration : none ;
27
27
-webkit-tap-highlight-color : transparent ; // Gets rid of tap active state
28
28
}
@@ -180,61 +180,61 @@ ul.staggered-list li { opacity: 0; }
180
180
Media Query Classes
181
181
**********************/
182
182
.hide-on-small-only , .hide-on-small-and-down {
183
- @media #{vars . $small-and-down } { display : none !important ; }
183
+ @media #{$small-and-down } { display : none !important ; }
184
184
}
185
185
186
186
.hide-on-med-and-down {
187
- @media #{vars . $medium-and-down } { display : none !important ; }
187
+ @media #{$medium-and-down } { display : none !important ; }
188
188
}
189
189
190
190
.hide-on-med-and-up {
191
- @media #{vars . $medium-and-up } { display : none !important ; }
191
+ @media #{$medium-and-up } { display : none !important ; }
192
192
}
193
193
194
194
.hide-on-med-only {
195
- @media only screen and (min-width : vars . $small-screen-up ) and (max-width : vars . $medium-screen ) {
195
+ @media only screen and (min-width : $small-screen-up ) and (max-width : $medium-screen ) {
196
196
display : none !important ;
197
197
}
198
198
}
199
199
200
200
.hide-on-large-only {
201
- @media #{vars . $large-and-up } { display : none !important ; }
201
+ @media #{$large-and-up } { display : none !important ; }
202
202
}
203
203
204
204
.hide-on-extra-large-only {
205
- @media #{vars . $extra-large-and-up } { display : none !important ; }
205
+ @media #{$extra-large-and-up } { display : none !important ; }
206
206
}
207
207
208
208
.show-on-extra-large {
209
- @media #{vars . $extra-large-and-up } { display : block !important ; }
209
+ @media #{$extra-large-and-up } { display : block !important ; }
210
210
}
211
211
212
212
.show-on-large {
213
- @media #{vars . $large-and-up } { display : block !important ; }
213
+ @media #{$large-and-up } { display : block !important ; }
214
214
}
215
215
216
216
.show-on-medium {
217
- @media only screen and (min-width : vars . $small-screen-up ) and (max-width : vars . $medium-screen ) {
217
+ @media only screen and (min-width : $small-screen-up ) and (max-width : $medium-screen ) {
218
218
display : block !important ;
219
219
}
220
220
}
221
221
222
222
.show-on-small {
223
- @media #{vars . $small-and-down } { display : block !important ; }
223
+ @media #{$small-and-down } { display : block !important ; }
224
224
}
225
225
226
226
.show-on-medium-and-up {
227
- @media #{vars . $medium-and-up } { display : block !important ; }
227
+ @media #{$medium-and-up } { display : block !important ; }
228
228
}
229
229
230
230
.show-on-medium-and-down {
231
- @media #{vars . $medium-and-down } { display : block !important ; }
231
+ @media #{$medium-and-down } { display : block !important ; }
232
232
}
233
233
234
234
235
235
// Center text on mobile
236
236
.center-on-small-only {
237
- @media #{vars . $small-and-down } { text-align : center ; }
237
+ @media #{$small-and-down } { text-align : center ; }
238
238
}
239
239
240
240
// Footer
@@ -258,6 +258,7 @@ ul.staggered-list li { opacity: 0; }
258
258
padding : 10px 0px ;
259
259
}
260
260
}
261
+
261
262
.page-footer ul {
262
263
padding-left : 0 ;
263
264
list-style-type : none ;
@@ -315,7 +316,7 @@ td, th {
315
316
}
316
317
317
318
// Responsive Table
318
- @media #{vars . $medium-and-down } {
319
+ @media #{$medium-and-down } {
319
320
320
321
table .responsive-table {
321
322
width : 100% ;
0 commit comments