Explorar el Código

Finishing up CSS changes

Xen hace 1 año
padre
commit
33a862c1ec
Se han modificado 1 ficheros con 25 adiciones y 4 borrados
  1. 25 4
      www/main.css

+ 25 - 4
www/main.css

@@ -13,22 +13,43 @@ h1,h2,h3 {
   line-height:1.2;
 }
 
+h3 a:link {
+  text-decoration: none;
+}
+
+h3 a:visited {
+  text-decoration: none;
+}
+
+h3 a:hover {
+  text-decoration: none;
+}
+
+h3 a:active {
+  text-decoration: none;
+}
+
 @media (prefers-color-scheme: dark) {
   body {
     color:#ebecf7;
     background-color:#171b25;
   }
-  a {
-    color:#a7b1fc;
-  };
+  h3 a:visited {
+    color:#a15cb3;
+  }
+  h3 a {
+    color:#5661bb;
+  }
   a:visited {
     color:#ac71bb;
   }
+  a {
+    color:#a7b1fc;
+  }
 }
 
 @media (prefers-color-scheme: light) {
   body {
     color:#444;
-    background-color:unset;
   }
 }