I HATE CHROMIUM
This commit is contained in:
parent
231c550005
commit
afe0cbff6c
2 changed files with 17 additions and 1 deletions
|
@ -26,7 +26,7 @@
|
|||
|
||||
<body>
|
||||
{WEATHER_MODIFIER}
|
||||
<h1 class="animatedTitle">Welcome to <span class="mainTitle">Violet's Purgatory</span><span class="note">Commit {COMMIT_COUNT}</span></h1>
|
||||
<h1 class="animatedTitle"><div id="textWrapper">Welcome to <span class="mainTitle">Violet's Purgatory</span><span class="note">Commit {COMMIT_COUNT}</span></div></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,6 +14,10 @@ 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;
|
||||
|
@ -133,6 +137,18 @@ 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