Index: static/scss/_utilities.scss |
=================================================================== |
--- a/static/scss/_utilities.scss |
+++ b/static/scss/_utilities.scss |
@@ -88,16 +88,33 @@ |
clip: rect(0, 0, 0, 0); |
width: 1px; |
height: 1px; |
margin: -1px; |
padding: 0; |
border: 0; |
} |
+/* Unstyled elements |
juliandoucette
2017/11/06 10:30:48
TOL: .unstyle or .unstyled?
ire
2017/11/06 14:32:57
*shrugs* I'll keep it as unstyled for now
|
+ ******************************************************************************/ |
+ |
+.unstyled, |
juliandoucette
2017/11/06 10:30:48
TOL: .unstyled could apply to children too if you
ire
2017/11/06 14:32:57
Good idea. Done.
|
+.content .unstyled |
+{ |
+ margin: 0; |
+ padding: 0; |
+ border: 0; |
+ background: none; |
+} |
+ |
+ul.unstyled |
+{ |
+ list-style: none; |
+} |
+ |
/* Backgrounds |
******************************************************************************/ |
.bg-primary |
{ |
color: $primary-light; |
background-color: $primary-dark; |
} |