You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
592 B
CSS
35 lines
592 B
CSS
3 weeks ago
|
@font-face {
|
||
|
font-family: "Futura";
|
||
|
src: url("./FuturaLT-Heavy.ttf") format("truetype");
|
||
|
}
|
||
|
|
||
|
:root {
|
||
|
--background: #fff3f9;
|
||
|
--text: #ffa7c7;
|
||
|
--highlight: #ff5a99;
|
||
|
}
|
||
|
|
||
|
body {
|
||
|
background: var(--background);
|
||
|
color: var(--text);
|
||
|
position:absolute;
|
||
|
margin-top: 10px;
|
||
|
font-family: Futura;
|
||
|
}
|
||
|
|
||
|
.disclaimer {
|
||
|
color: red;
|
||
|
}
|
||
|
|
||
|
body {
|
||
|
opacity: 0;
|
||
|
transform: translateY(100px);
|
||
|
animation: slideAndFade 0.5s ease-in-out forwards;
|
||
|
}
|
||
|
|
||
|
@keyframes slideAndFade {
|
||
|
to {
|
||
|
opacity: 1;
|
||
|
transform: translateY(0);
|
||
|
}
|
||
|
}
|