From 78f83f6f5e95bdf1742a74b24d5c3e1a56e43601 Mon Sep 17 00:00:00 2001 From: FivePixels Date: Mon, 11 Feb 2019 01:11:39 -0600 Subject: Removed Cydia + JS --- assets/sass/base/_page.scss | 105 -------------------------------------------- 1 file changed, 105 deletions(-) delete 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 deleted file mode 100644 index 7c3e5c1..0000000 --- a/assets/sass/base/_page.scss +++ /dev/null @@ -1,105 +0,0 @@ -/// -/// 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