mirror of
https://github.com/IvarK/AntimatterDimensionsSourceCode.git
synced 2024-11-24 21:21:59 +00:00
fbde749674
Fix #2137
64 lines
1.3 KiB
CSS
64 lines
1.3 KiB
CSS
html {
|
|
background: url('../images/s1-bg.svg') no-repeat;
|
|
background-size: contain;
|
|
align-content: center;
|
|
background-size: 100%;
|
|
background-color: #d72621;
|
|
background-attachment:fixed;
|
|
background-position:center bottom;
|
|
}
|
|
|
|
body.t-s1 {
|
|
color: black;
|
|
background: none;
|
|
}
|
|
|
|
#container.container {
|
|
color: black !important;
|
|
}
|
|
|
|
.t-s1 .c-tt-buy-button--unlocked {
|
|
color: #639565;
|
|
border-color: #639565;
|
|
}
|
|
|
|
.t-s1 .c-tt-buy-button--unlocked:hover {
|
|
color: #232028;
|
|
background: #639565;
|
|
}
|
|
|
|
.t-s1 .c-tt-buy-button--locked {
|
|
border-color: #639565;
|
|
}
|
|
|
|
.t-s1 .c-tt-buy-button--locked:hover {
|
|
background: #d72621;
|
|
border-color: black;
|
|
}
|
|
|
|
#snow {
|
|
display: block !important;
|
|
background-image: url('../images/snow1.png'), url('../images/snow2.png'), url('../images/snow3.png');
|
|
height: 100%;
|
|
width: 100%;
|
|
left: 0;
|
|
top: 0;
|
|
position: fixed;
|
|
z-index: 0;
|
|
opacity: 1;
|
|
pointer-events: none;
|
|
animation: snow 10s linear infinite, snowFade 10s cubic-bezier(0,0.3,1,0.7) infinite;
|
|
}
|
|
|
|
@keyframes snow {
|
|
0% {background-position: 0 0, 0 0, 0 0;}
|
|
50% {background-position: 500px 500px, 100px 200px, -100px 150px;}
|
|
100% {background-position: 1000px 1000px, 200px 400px, -200px 300px;}
|
|
}
|
|
|
|
@keyframes snowFade {
|
|
0% {opacity: 0;}
|
|
50% {opacity: 1;}
|
|
100% {opacity: 0;}
|
|
}
|