diff options
Diffstat (limited to 'static/style.css')
| -rw-r--r-- | static/style.css | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/static/style.css b/static/style.css index eaf3af0..8d19477 100644 --- a/static/style.css +++ b/static/style.css @@ -64,3 +64,42 @@ a { color: #5E5E5E; text-decoration: line-through; } + +.random-bg { + transition: all 1500ms; +} +.random-font { + transition: all 1500ms; +} +.wrapper { + overflow: hidden; +} +#loader-bg { + position: fixed; + /* + top: 0; + left: 0; + right: 0; + bottom: 0; + */ + background-color: #fefefe; + z-index: 99999; + height: 100%; + width: 100%; + overflow: hidden !important; + visibility: hidden; +} +#loader { + width: 40px; + height: 40px; + position: absolute; + left: 50%; + top: 50%; + background-image: url(/static/img/loading.gif); + background-repeat: no-repeat; + background-position: center; + -webkit-background-size: cover; + background-size: cover; + margin: -20px 0 0 -20px; + visibility: hidden; +} |
