summaryrefslogtreecommitdiffstats
path: root/webapp/sass/routes/_loading.scss
diff options
context:
space:
mode:
authorChristopher Speller <crspeller@gmail.com>2017-09-06 23:04:13 -0700
committerChristopher Speller <crspeller@gmail.com>2017-09-06 23:11:58 -0700
commitd8bd57901e33a7057e26e782e295099ffcc0da89 (patch)
treee12dfc8cad42b1576756d19d7fbfd82646a009bf /webapp/sass/routes/_loading.scss
parent7bc8e9a08dfde56387f946fdf5086252aa4d0491 (diff)
downloadchat-d8bd57901e33a7057e26e782e295099ffcc0da89.tar.gz
chat-d8bd57901e33a7057e26e782e295099ffcc0da89.tar.bz2
chat-d8bd57901e33a7057e26e782e295099ffcc0da89.zip
Removing webapp
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;
- }
- }
- }
-}