Violets-Purgatory/static/root.css

92 lines
1.6 KiB
CSS
Raw Normal View History

2024-02-12 11:12:15 -06:00
/*
This is the CSS file for the root page. Only put changes in here
intended for the main page of the site!
*/
.mainTitle {
2024-02-13 10:55:54 -06:00
font-size: min(calc(2rem + 2vw), 3rem);
2024-02-12 11:12:15 -06:00
display: block;
padding-top: 5px;
2024-02-13 10:55:54 -06:00
line-height: min(calc(2.2rem + 2vw), 3rem);
2024-02-12 11:12:15 -06:00
}
#card {
2024-02-13 09:27:26 -06:00
background-color: rgb(75, 25, 100);
2024-02-12 11:12:15 -06:00
padding: 15px;
border: 2px white solid;
margin: 20px auto;
width: 95%;
max-width: 800px;
z-index: 3;
position: relative;
2024-02-13 09:27:26 -06:00
border-radius: 12px;
2024-02-12 11:12:15 -06:00
}
.animatedTitle {
animation: mainText 3s cubic-bezier(0.075, 0.82, 0.165, 1);
margin: auto;
max-width: 75%;
/* outline: 1px white solid; */
}
.animatedMain {
opacity: 1;
animation: fadeDelay 3s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.pfp {
border-radius: 15px;
border: darkgray 4px solid;
width: 60%;
aspect-ratio: 1/1;
transform: scale(0.9);
border-radius: 50%;
}
@keyframes mainText {
0% {
transform: translateY(calc(50vh - 6rem)) scale(1.5);
opacity: 0;
height: 4rem;
}
50% {
opacity: 1;
height: 4rem;
transform: translateY(calc(50vh - 6rem)) scale(1.25);
}
100% {
transform: translateY(0) scale(1);
}
}
@keyframes fadeDelay {
0% {
opacity: 0;
2024-02-13 10:54:08 -06:00
display: none;
2024-02-12 11:12:15 -06:00
}
66% {
opacity: 0;
transform: translateY(25vh);
display: none;
2024-02-12 11:12:15 -06:00
}
100% {
opacity: 1;
transform: none;
}
}
@keyframes hideContent {
0% {
overflow-y: hidden;
overflow-x: hidden;
}
100% {
overflow-y: hidden;
overflow-x: hidden;
}
}