Initial commit

This commit is contained in:
Arjun Patel
2018-06-29 00:00:48 -07:00
commit f72587d80e
59 changed files with 10681 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
/* Box */
.box {
border-radius: _size(border-radius);
box-shadow: 0px 0px 4px 1px _palette(border-lt);
padding: 3rem;
> :last-child {
margin-bottom: 0;
}
&.alt {
border: 0;
border-radius: 0;
padding: 0;
}
@include breakpoint('<=medium') {
padding: 2rem;
}
}
@mixin color-box($p: null) {
.box {
border-color: _palette($p, border);
}
}
@include color-box;