summaryrefslogtreecommitdiffstats
path: root/webapp/sass/routes/_loading.scss
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/sass/routes/_loading.scss')
-rw-r--r--webapp/sass/routes/_loading.scss51
1 files changed, 0 insertions, 51 deletions
diff --git a/webapp/sass/routes/_loading.scss b/webapp/sass/routes/_loading.scss
deleted file mode 100644
index 39f37b1b3..000000000
--- a/webapp/sass/routes/_loading.scss
+++ /dev/null
@@ -1,51 +0,0 @@
-@charset 'UTF-8';
-
-@import "compass/css3/animation";
-
-.loading-screen {
- display: table;
- height: 100%;
- padding: 60px;
- text-align: center;
- width: 100%;
-
- .loading__content {
- display: table-cell;
- font-size: 0;
- vertical-align: middle;
-
- h3 {
- display: inline-block;
- font-size: 16px;
- font-weight: 400;
- margin: 0 .2em;
- }
-
- .round {
- @include animation(move .75s infinite linear);
- @include border-radius(10px);
- background-color: #444444;
- display: inline-block;
- height: 4px;
- margin: 0 2px;
- opacity: .1;
- width: 4px;
- }
-
- @for $i from 1 through 3 {
- .round-#{$i} {
- @include animation-delay(.2s*$i);
- }
- }
-
- @include keyframes(move) {
- from {
- opacity: 1;
- }
-
- to {
- opacity: .1;
- }
- }
- }
-}