forked from Simnation/Main
47 lines
690 B
CSS
47 lines
690 B
CSS
![]() |
@font-face {
|
||
|
font-family: "DS-DIGI";
|
||
|
src: url("assets/DS-DIGI.TTF");
|
||
|
}
|
||
|
|
||
|
body {
|
||
|
background: url("assets/background.png");
|
||
|
background-size: cover;
|
||
|
height: 100vh;
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
overflow: hidden;
|
||
|
}
|
||
|
|
||
|
.text {
|
||
|
position: absolute;
|
||
|
top: 24px;
|
||
|
left: 125px;
|
||
|
|
||
|
color: #31ab88;
|
||
|
text-shadow: 0px 0px 2px #31ab88;
|
||
|
|
||
|
font-family: "DS-DIGI";
|
||
|
font-size: 18px;
|
||
|
|
||
|
width: 100%;
|
||
|
height: 43px;
|
||
|
|
||
|
text-transform: uppercase;
|
||
|
|
||
|
animation: flash 0.6s infinite;
|
||
|
}
|
||
|
|
||
|
@keyframes flash {
|
||
|
0% {
|
||
|
opacity: 1.0;
|
||
|
}
|
||
|
50% {
|
||
|
opacity: 1.0;
|
||
|
}
|
||
|
51% {
|
||
|
opacity: 0.2;
|
||
|
}
|
||
|
100% {
|
||
|
opacity: 0.2;
|
||
|
}
|
||
|
}
|