This commit is contained in:
Henry Jameson 2025-08-14 16:48:47 +03:00
commit e076403fcb

View file

@ -5,15 +5,14 @@ body {
#splash { #splash {
--scale: 1; --scale: 1;
width: 100vw; width: 100vw;
height: 100vh; height: 100vh;
display: grid; display: grid;
grid-template-rows: auto; grid-template-rows: auto;
grid-template-columns: auto; grid-template-columns: auto;
align-content: center; align-content: center;
align-items: center; place-items: center;
justify-content: center;
justify-items: center;
flex-direction: column; flex-direction: column;
background: #0f161e; background: #0f161e;
font-family: sans-serif; font-family: sans-serif;
@ -22,7 +21,7 @@ body {
z-index: 9999; z-index: 9999;
font-size: calc(1vw + 1vh + 1vmin); font-size: calc(1vw + 1vh + 1vmin);
opacity: 1; opacity: 1;
transition: opacity 500ms ease-out 0.5s; transition: opacity 500ms ease-out 2s;
} }
#splash.hidden, #splash.hidden,
@ -32,9 +31,9 @@ body {
#splash-credit { #splash-credit {
position: absolute; position: absolute;
font-size: 14px; font-size: 1em;
bottom: 16px; bottom: 1em;
right: 16px; right: 1em;
} }
#splash-container { #splash-container {