More info on page

This commit is contained in:
Bingus_Violet 2024-02-12 11:12:15 -06:00
parent 0fb3204df1
commit bebacd675d
5 changed files with 164 additions and 131 deletions

25
static/subpage.css Normal file
View file

@ -0,0 +1,25 @@
/*
This page applies to any page on the site EXCEPT
the main page. Please only make changes here if you
want to modify the CSS of ALL subpages.
*/
h1:nth-of-type(1) {
font-size: 2.5rem;
}
main {
animation: fadeUp 2s cubic-bezier(0.075, 0.82, 0.165, 1);
}
@keyframes fadeUp {
0% {
transform: translateY(50vw);
opacity: 0;
}
100% {
transform: none;
opacity: 1;
}
}