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.
32 lines
523 B
CSS
32 lines
523 B
CSS
@font-face {
|
|
font-family: "Futura";
|
|
src: url("./FuturaLT-Heavy.ttf") format("truetype");
|
|
}
|
|
|
|
body{
|
|
position:absolute;
|
|
margin-top: 10px;
|
|
font-family: "Futura";
|
|
}
|
|
|
|
footer{
|
|
position: fixed;
|
|
bottom: 0px;
|
|
width:100%;
|
|
height: 75px;
|
|
display: flex;
|
|
justify-content: space-around;
|
|
}
|
|
|
|
.slidefadein {
|
|
opacity: 0;
|
|
transform: translateY(100px);
|
|
animation: slideAndFade 0.5s ease-in-out forwards;
|
|
}
|
|
|
|
@keyframes slideAndFade {
|
|
to {
|
|
opacity: 1;
|
|
transform: translateY(0);
|
|
}
|
|
} |