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
+65
View File
@@ -0,0 +1,65 @@
/* Highlights */
.highlights {
width: 100%;
margin: (_size(element-margin) * 1.25) 0;
@include flexgrid((
columns: 3,
gutters: 3rem,
vertical-align: stretch
));
.content {
border-radius: _size(border-radius);
height: 100%;
padding: 3rem;
text-align: center;
.icon {
font-size: 5rem;
}
}
> div {
> :last-child {
margin-bottom: 0;
}
}
@include breakpoint('<=medium') {
@include flexgrid-resize((
columns: 2,
gutters: 2rem,
prev-columns: 3
));
.content {
padding: 2rem;
}
}
@include breakpoint('<=small') {
@include flexgrid-resize((
columns: 1,
gutters: 2rem,
prev-columns: (3, 2)
));
}
}
@mixin color-highlights($p: null) {
$highlight: _palette($p, highlight);
.highlights {
.content {
background: _palette($p, bg);
box-shadow: 0px 0px 4px 1px _palette($p, border-lt);
}
}
}
@include color-highlights;