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.

48 lines
837 B
CSS

@font-face {
font-family: "Futura";
src: url("./FuturaLT-Heavy.ttf") format("truetype");
}
:root {
--background: #fff3f9;
--text: #ffa7c7;
--highlight: #ff5a99;
}
.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);
}
}
@media (prefers-color-scheme: light) {
body {
background: #fff3f9;
color: #ffa7c7;
position:absolute;
margin-top: 10px;
font-family: Futura;
}
}
@media (prefers-color-scheme: dark) {
body {
background: #060606;
color: #00d791;
position:absolute;
margin-top: 10px;
font-family: Futura;
}
}