-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9c4ad4c
commit 6f0f212
Showing
4 changed files
with
44 additions
and
2 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,53 @@ | ||
@import url('https://fonts.googleapis.com/css?family=DotGothic16'); | ||
|
||
:root { | ||
color-scheme: dark; | ||
} | ||
|
||
body { | ||
color: #eee; | ||
background: #121212; | ||
background-color: #121212; | ||
background-image: url("/images/SKYSPACE.png"); | ||
background-size: 1024px 512px; | ||
|
||
-webkit-animation-name: slidein; | ||
animation-name: slidein; | ||
|
||
-webkit-animation-duration: 240s; | ||
animation-duration: 480s; | ||
|
||
-webkit-animation-fill-mode: both; | ||
animation-fill-mode: both; | ||
|
||
-webkit-animation-iteration-count: infinite; | ||
animation-iteration-count: infinite; | ||
|
||
-webkit-animation-timing-function: linear; | ||
animation-timing-function: linear; | ||
} | ||
|
||
@-webkit-keyframes slidein { | ||
from {background-position: 0px 0px;} | ||
to {background-position: 1024px 2048px;} | ||
} | ||
|
||
@keyframes slidein { | ||
from {background-position: 0px 0px;} | ||
to {background-position: 1024px 2048px;} | ||
|
||
} | ||
|
||
a { | ||
color: #809fff; | ||
} | ||
|
||
.placeholder { | ||
display: block; | ||
margin: 2.5% auto; | ||
max-height: 320px; | ||
max-width: 400px; | ||
width: 50%; | ||
font-family: "DotGothic16", sans-serif; | ||
font-size: 200%; | ||
text-align: center; | ||
} |