switched theme

This commit is contained in:
Cameron Squire
2018-01-21 16:06:51 -08:00
parent 84a49691f6
commit 6d9a7eaa60
52 changed files with 4982 additions and 2599 deletions
+13 -23
View File
@@ -1,5 +1,5 @@
///
/// Dimension by HTML5 UP
/// Phantom by HTML5 UP
/// html5up.net | @ajlkn
/// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
///
@@ -7,30 +7,20 @@
/* Wrapper */
#wrapper {
@include vendor('display', 'flex');
@include vendor('flex-direction', 'column');
@include vendor('align-items', 'center');
@include vendor('justify-content', 'space-between');
position: relative;
min-height: 100vh;
width: 100%;
padding: 4rem 2rem;
z-index: 3;
> * {
> .inner {
$gutter: _size(gutter);
&:before {
content: '';
display: block;
}
width: 100%;
max-width: _size(inner);
margin: 0 auto;
padding: 0 $gutter;
@include breakpoint(xlarge) {
padding: 3rem 2rem;
}
@include breakpoint(small) {
$gutter: _size(gutter) * 0.5;
@include breakpoint(small) {
padding: 2rem 1rem;
}
@include breakpoint(xsmall) {
padding: 1rem;
padding: 0 $gutter;
}
}
}
}