1
0
Fork 0

i miss you, jett.

This commit is contained in:
Lethe Beltane 2022-02-14 10:52:47 -06:00
parent 4b3daaee9d
commit 605a918ab0
Signed by: lethe
GPG key ID: 21A3DA3DE29CB63C
2 changed files with 27 additions and 3 deletions

View file

@ -49,7 +49,7 @@ table {
padding: 3px;
}
article a, ul a, td a {
article a, ul a, td a, .bruh {
text-decoration: underline;
}
@ -69,3 +69,23 @@ img.big {
width: 100%;
height: auto;
}
/* https://orangeable.com/css/animated-gradient-text */
.lesbian {
background: linear-gradient(-45deg, #D52D00, #EF7627, #FF9A56, #FFFFFF, #D162A4, #B55690, #A30262);
background-size: 300%;
font-family: Arial, Helvetica, sans-serif;
font-weight: bold;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
animation: animated_text 8s ease-in-out infinite;
-moz-animation: animated_text 8s ease-in-out infinite;
-webkit-animation: animated_text 8s ease-in-out infinite;
}
@keyframes animated_text {
0% { background-position: 0px 50%; }
50% { background-position: 100% 50%; }
100% { background-position: 0px 50%; }
}