mirror of
https://github.com/tildeclub/site.git
synced 2026-01-23 21:40:18 +00:00
Adds "prefers-reduced-motion" media query
Adds prefers-reduced-motion media query to not show blinking _ if the user prefers reduced motion (as indicated by their OS settings).
This commit is contained in:
14
style.css
14
style.css
@@ -67,12 +67,14 @@ hr {
|
||||
from { content: "_"; }
|
||||
to { content: ""; }
|
||||
}
|
||||
h1::after {
|
||||
content: "_";
|
||||
animation-name: cursor;
|
||||
animation-iteration-count: infinite;
|
||||
animation-timing-function: cubic-bezier(1.0,0,0,1.0);
|
||||
animation-duration: 1s;
|
||||
@media not (prefers-reduced-motion: reduce) {
|
||||
h1::after {
|
||||
content: "_";
|
||||
animation-name: cursor;
|
||||
animation-iteration-count: infinite;
|
||||
animation-timing-function: cubic-bezier(1.0,0,0,1.0);
|
||||
animation-duration: 1s;
|
||||
}
|
||||
}
|
||||
h1 {
|
||||
text-transform: uppercase;
|
||||
|
||||
Reference in New Issue
Block a user