Trying anything

This commit is contained in:
bingus_violet 2024-09-26 14:25:08 -05:00
parent f060c54222
commit f2de01a82a

View file

@ -45,7 +45,6 @@ body {
}
.animatedMain {
opacity: 1;
animation: fadeDelay 1s linear;
animation-delay: 1.25s;
animation-fill-mode: both;
@ -102,6 +101,20 @@ img:not(.project-inner > div > img):not(.activity>img) {
}
}
@keyframes fadeDelay {
0% {
display: none;
opacity: 0;
transform: translateY(25vh);
}
100% {
display: block;
opacity: 1;
transform: translateY(0);
}
}
@keyframes mainText {
0% {
transform: translateY(calc(50vh - 6rem)) scale(1.5);
@ -118,20 +131,6 @@ img:not(.project-inner > div > img):not(.activity>img) {
}
}
@keyframes fadeDelay {
0% {
display: block;
opacity: 0;
transform: translateY(25vh);
}
100% {
display: block;
opacity: 1;
transform: translateY(0);
}
}
@keyframes hideContent {
0% {
overflow-y: hidden;