about summary refs log tree commit diff
diff options
context:
space:
mode:
authorStarfall <us@starfall.systems>2022-04-12 13:27:08 -0500
committerStarfall <us@starfall.systems>2022-04-12 13:30:40 -0500
commit9092ae701197fa0fe175328ec47df20cddf09b2f (patch)
tree5a3c2881f89d8ca717240c27438236f41578d164
parentf19f1ec0584e3e53850e37748396cfb916456ac2 (diff)
turn blinky cursor off with prefers-reduced-motion
-rw-r--r--css/terminal.css6
1 files changed, 6 insertions, 0 deletions
diff --git a/css/terminal.css b/css/terminal.css
index 0357014..3d345ae 100644
--- a/css/terminal.css
+++ b/css/terminal.css
@@ -67,6 +67,12 @@ h1::after {
         opacity: 0;
     }
 }
+@media(prefers-reduced-motion: reduce) {
+	h1::after {
+		animation: none !important;
+		opacity: 50%;
+	}
+}
 h2 {
     font: bold 141%/1 var(--font-accent);
     margin: 0.4em 0;