diff options
-rw-r--r-- | cool/style.css | 16 | ||||
-rw-r--r-- | index.html | 3 |
2 files changed, 10 insertions, 9 deletions
diff --git a/cool/style.css b/cool/style.css index 584e123..8dd0e0c 100644 --- a/cool/style.css +++ b/cool/style.css @@ -69,12 +69,12 @@ a:link, a:visited { color: #fff; } -/* @media (prefers-reduced-motion: reduce) { */ -/* .blink { */ -/* animation: none; */ -/* } */ +@media (prefers-reduced-motion: reduce) { + .blink { + animation: none; + } -/* .bg { */ -/* display: none; */ -/* } */ -/* } */ + .bg { + display: none; + } +} @@ -9,7 +9,8 @@ Redirecting to <a href=""><span id="where"></span></a>, please wait <span id="when">3</span>s... <script charset="utf-8"> - const choices = ["cool", "uncool"]; + //const choices = ["cool", "uncool"]; + const choices = ["cool"]; const choice = choices[Math.floor(Math.random() * choices.length)]; where.innerText = choice; setTimeout(() => { |