Skip to content

Commit

Permalink
Backdrop, graphical placeholder
Browse files Browse the repository at this point in the history
  • Loading branch information
FelesNoctis committed Nov 15, 2023
1 parent 9c4ad4c commit 6f0f212
Show file tree
Hide file tree
Showing 4 changed files with 44 additions and 2 deletions.
Binary file added images/SKYSPACE.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/bdp4logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 2 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@
<![endif]-->

<div>
PLACEHOLDER
<img src="/images/bdp4logo.png" alt="Brutal Doom Platinum logo" class="placeholder">
<div class="placeholder">Coming Soon</div>
</div>

<!-- <script src="" async defer></script> -->
Expand Down
43 changes: 42 additions & 1 deletion styles/main.css
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;
}

0 comments on commit 6f0f212

Please sign in to comment.