It's a terrible day for rain

This commit is contained in:
Bingus_Violet 2024-03-03 23:57:30 -06:00
parent 333d1f08cf
commit a58de11cc2
9 changed files with 129 additions and 288 deletions

View file

@ -61,8 +61,6 @@ body {
min-height: 100vh;
padding: 5vh 0;
animation: hideContent 2.5s;
}

View file

@ -19,6 +19,7 @@
</head>
<body>
{WEATHER_MODIFIER}
<h1 class="animatedTitle">Welcome to <span class="mainTitle">Violet's Purgatory</span><span class="note">Commit {COMMIT_COUNT}</span><br></h1>
<main class="animatedMain">
<p>{RANDOM_QUOTE}</p>
@ -52,6 +53,9 @@
<hr>
<h1>Socials</h1>
{PATH_SOCIALS}
<br>
<p>{WEATHER_TEXT}</p>
<br>
</main>
</body>

View file

@ -11,7 +11,8 @@
}
#card {
background-color: rgb(25, 5, 80);
background-color: rgba(25, 5, 80, 0.5);
backdrop-filter: blur(10px);
padding: 15px;
border: 2px white solid;
margin: 20px auto;
@ -26,6 +27,7 @@
animation: mainText 2s cubic-bezier(0.075, 0.82, 0.165, 1);
margin: auto;
max-width: 75%;
padding-top: 30px;
/* outline: 1px white solid; */
}

View file

@ -8,6 +8,10 @@ h1:nth-of-type(1) {
font-size: 2.5rem;
}
body {
padding: 5vh 0;
}
main {
animation: fadeUp 2s cubic-bezier(0.075, 0.82, 0.165, 1);
}