OKay fixed for real I think
This commit is contained in:
parent
6b18b47887
commit
57fd8479aa
2 changed files with 7 additions and 25 deletions
|
@ -26,7 +26,7 @@
|
|||
|
||||
<body>
|
||||
{WEATHER_MODIFIER}
|
||||
<h1 class="animatedTitle"><div id="textWrapper">Welcome to <span class="mainTitle">Violet's Purgatory</span><span class="note">Commit {COMMIT_COUNT}</span></div></h1>
|
||||
<h1 class="animatedTitle">Welcome to <span class="mainTitle">Violet's Purgatory</span><span class="note">Commit {COMMIT_COUNT}</span></h1>
|
||||
<main class="animatedMain">
|
||||
<p>Make sure to check out this project on <a href="https://git.violets-purgatory.dev/bingus_violet/violets-purgatory">Forgejo</a>!</p>
|
||||
<hr>
|
||||
|
|
|
@ -14,10 +14,6 @@ body {
|
|||
line-height: min(calc(2.2rem + 2vw), 3rem);
|
||||
}
|
||||
|
||||
#textWrapper {
|
||||
animation: textFade 1s cubic-bezier(0.075, 0.82, 0.165, 1);
|
||||
}
|
||||
|
||||
#card {
|
||||
background-color: rgba(10, 5, 90);
|
||||
padding: 15px;
|
||||
|
@ -41,8 +37,8 @@ body {
|
|||
}
|
||||
|
||||
.animatedTitle {
|
||||
animation: mainText 1s cubic-bezier(0.075, 0.82, 0.165, 1);
|
||||
animation-delay: 1s;
|
||||
animation: mainText 2s cubic-bezier(0.075, 0.82, 0.165, 1);
|
||||
/* animation-delay: 1s; */
|
||||
animation-fill-mode: both;
|
||||
margin: auto;
|
||||
max-width: 75%;
|
||||
|
@ -122,13 +118,11 @@ img:not(.project-inner > div > img):not(.activity>img) {
|
|||
}
|
||||
|
||||
@keyframes mainText {
|
||||
/* 0% {
|
||||
transform: translateY(calc(50vh - 6rem)) scale(1.5);
|
||||
opacity: 0;
|
||||
} */
|
||||
|
||||
0% {
|
||||
opacity: 1;
|
||||
transform: translateY(calc(50vh - 6rem)) scale(1.5);
|
||||
}
|
||||
|
||||
50% {
|
||||
transform: translateY(calc(50vh - 6rem)) scale(1.25);
|
||||
}
|
||||
|
||||
|
@ -137,18 +131,6 @@ img:not(.project-inner > div > img):not(.activity>img) {
|
|||
}
|
||||
}
|
||||
|
||||
@keyframes textFade {
|
||||
0% {
|
||||
transform: scale(1.15);
|
||||
/* opacity: 0; */
|
||||
}
|
||||
|
||||
100% {
|
||||
transform: scale(1);
|
||||
/* opacity: 1; */
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes hideContent {
|
||||
0% {
|
||||
overflow-y: hidden;
|
||||
|
|
Loading…
Reference in a new issue