31 lines
535 B
CSS
31 lines
535 B
CSS
|
@font-face {
|
||
|
font-family: Novem;
|
||
|
src: url(Novem.ttf);
|
||
|
}
|
||
|
|
||
|
@keyframes loading {
|
||
|
from {transform: scale(1);}
|
||
|
50% {transform: scale(2);}
|
||
|
to {transform: scale(1);}
|
||
|
}
|
||
|
|
||
|
html, body {
|
||
|
width: 100vw;
|
||
|
height: 100vh;
|
||
|
overflow: hidden;
|
||
|
padding: 0;
|
||
|
color: white;
|
||
|
background-color: black;
|
||
|
font-family: Novem;
|
||
|
display: flex;
|
||
|
}
|
||
|
|
||
|
div.display {
|
||
|
display: block;
|
||
|
width: 100px;
|
||
|
height: 100px;
|
||
|
margin: auto;
|
||
|
text-align: center;
|
||
|
font-size: 100px;
|
||
|
animation: loading 2s infinite;
|
||
|
}
|