From 97dbc8c3772c89022a55d591c4ed90cee1d1feaa Mon Sep 17 00:00:00 2001 From: Dylan Bolger Date: Wed, 21 Mar 2018 08:24:51 -0500 Subject: redesign --- assets/sass/base/_page.scss | 105 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 105 insertions(+) create mode 100644 assets/sass/base/_page.scss (limited to 'assets/sass/base/_page.scss') diff --git a/assets/sass/base/_page.scss b/assets/sass/base/_page.scss new file mode 100644 index 0000000..7c3e5c1 --- /dev/null +++ b/assets/sass/base/_page.scss @@ -0,0 +1,105 @@ +/// +/// Ethereal by HTML5 UP +/// html5up.net | @ajlkn +/// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license) +/// + +/* Page */ + + @include keyframes('load-spinner') { + 0% { + @include vendor('transform', 'rotate(0deg)'); + } + + 100% { + @include vendor('transform', 'rotate(360deg)'); + } + } + + @-ms-viewport { + width: device-width; + } + + html { + width: 100%; + height: 100%; + } + + body { + @include vendor('display', 'flex'); + @include vendor('align-items', 'center'); + @include vendor('justify-content', 'flex-start'); + -ms-overflow-style: scrollbar; + width: 100%; + height: 100%; + min-height: 30rem; + overflow: hidden; + + &:before { + @include vendor('animation', 'load-spinner 1s infinite linear'); + @include vendor('transition', 'opacity 0.25s ease'); + @include vendor('transition-delay', '0s'); + @include vendor('pointer-events', 'none'); + content: ''; + display: block; + position: absolute; + top: 50%; + left: 50%; + width: 4rem; + height: 4rem; + margin: -2rem 0 0 -2rem; + background-image: svg-url(''); + background-position: center; + background-repeat: no-repeat; + background-size: 4rem; + opacity: 0; + } + + &:after { + @include vendor('pointer-events', 'none'); + content: ''; + display: block; + position: fixed; + top: 0; + left: 0; + width: 100%; + height: 100%; + z-index: -1; + background-attachment: fixed; + background-color: _palette(bg-alt); + background-image: url('../../images/overlay.png'), url('../../images/bg.jpg'); + background-repeat: repeat, repeat-x; + background-size: 128px 128px, cover; + } + + &.is-loading { + *, *:before, *:after { + @include vendor('animation', 'none !important'); + @include vendor('transition', 'none !important'); + } + + &:before { + @include vendor('transition', 'opacity 1s ease'); + @include vendor('transition-delay', '0.75s'); + opacity: 0.25; + } + } + } + + @include breakpoint(small) { + html { + height: auto; + } + + body { + height: auto; + overflow-x: hidden; + overflow-y: auto; + } + } + + @include breakpoint(xsmall) { + html, body { + min-width: 320px; + } + } \ No newline at end of file -- cgit v1.2.3