This commit is contained in:
Grant
2025-03-16 11:20:59 -06:00
commit b6d8497df5
49 changed files with 3376 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
<style>
@importrt url(https://fonts.googleapis.com/css?family=Exo+2:200i);
.title {
font-size: 24px;
font-family: 'Exo 2', sans-serif;
font-weight: lighter;
}
.title .flicker {
animation: flicker 3s linear infinite;
}
@keyframes flicker {
0%, 19.999%, 22%, 62.999%, 64%, 64.999%, 70%, 100% {
opacity: .1;
}
20%, 21.999%, 63%, 63.999%, 65%, 69.999% {
opacity: 0.99;
}
}
</style>