diff --git a/index.html b/index.html index 3d324ce..c5e000f 100755 --- a/index.html +++ b/index.html @@ -36,7 +36,12 @@
-

Stop scraping my website. You now have two options for pulling a full copy of my website: ZeroNet and Git. Both of these will auto-update and give you the actual source files, unlike a recursive wget or whatever that will mangle everything. Save yourself and me the grief and just use these instead.

+

Announcement Box

+

@@ -56,7 +61,6 @@ [Yggdrasil] [Freenet] [Tor] - [Lokinet] [Git]
diff --git a/style.css b/style.css index f571a7d..8aba60c 100755 --- a/style.css +++ b/style.css @@ -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%; } +}