about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAlyssa Ross <hi@alyssa.is>2022-08-05 13:24:52 +0000
committerAlyssa Ross <hi@alyssa.is>2022-08-05 13:25:27 +0000
commit67a22ae1e9a67bef94ca139b781d5ddc953aeccc (patch)
tree21de66d8a70a1fa6ea0aecdedaf790da9e3032f6
parentfd7a51fdf53f7e49743bb9298f5659def82d6890 (diff)
downloadwww-67a22ae1e9a67bef94ca139b781d5ddc953aeccc.tar
www-67a22ae1e9a67bef94ca139b781d5ddc953aeccc.tar.gz
www-67a22ae1e9a67bef94ca139b781d5ddc953aeccc.tar.bz2
www-67a22ae1e9a67bef94ca139b781d5ddc953aeccc.tar.lz
www-67a22ae1e9a67bef94ca139b781d5ddc953aeccc.tar.xz
www-67a22ae1e9a67bef94ca139b781d5ddc953aeccc.tar.zst
www-67a22ae1e9a67bef94ca139b781d5ddc953aeccc.zip
style.css: drop workaround for old Firefox
This is long obsolete at this point.

Signed-off-by: Alyssa Ross <hi@alyssa.is>
-rw-r--r--style.css13
1 files changed, 0 insertions, 13 deletions
diff --git a/style.css b/style.css
index 6463f24..e9fd751 100644
--- a/style.css
+++ b/style.css
@@ -20,16 +20,3 @@ h1, h2, h3, h4 {
 var {
 	font-family: serif;
 }
-
-/*
-Firefox only supports conic gradients as of 83.0, so for the time
-being, we need to provide a fallback for the logo.
-*/
-
-.logo { display: none; }
-.no-logo { display: block; }
-
-@supports (background: conic-gradient(from 0.25turn, red, magenta, blue, aqua, lime, yellow, red)) {
-	.logo { display: block; }
-	.no-logo { display: none; }
-}