diff options
| author | Henry Jameson <me@hjkos.com> | 2024-09-18 02:54:25 +0300 |
|---|---|---|
| committer | Henry Jameson <me@hjkos.com> | 2024-09-18 02:54:25 +0300 |
| commit | 189bb024369597d1945c8899852b2f7d42646555 (patch) | |
| tree | 9e3f3d76bcceb374521e430eb92c78182172273d | |
| parent | ce7ac028718b1850cff3ce8f7293f025105a0880 (diff) | |
a11y
| -rw-r--r-- | index.html | 10 |
1 files changed, 6 insertions, 4 deletions
@@ -4,6 +4,7 @@ <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1,user-scalable=no"> <link rel="icon" type="image/png" href="/favicon.png"> + <!-- putting styles here to avoid having to wait for styles to load up --> <style id="splashscreen"> #splash { --scale: 1; @@ -114,13 +115,13 @@ </head> <body style="margin: 0; padding: 0"> <noscript>To use Pleroma, please enable JavaScript.</noscript> - <!-- putting styles here to avoid having to wait for styles to load up --> <div id="splash"> - <div id="splash-credit"> + <!-- we are hiding entire graphic so no point showing credit --> + <div aria-hidden="true" id="splash-credit"> Art by pipivovott </div> <div id="splash-container"> - <div id="mascot-container"> + <div aria-hidden="true" id="mascot-container"> <div id="throbber"> <div class="chunk" id="chunk-P"> </div> @@ -133,7 +134,8 @@ </div> <div id="status" class="css-ok"> <!-- (。>﹏<) --> - <span class="initial-text">(。>﹏<)</span> + <!-- it's a pseudographic, don't want screenreader read out nonsense --> + <span aria-hidden="true" class="initial-text">(。>﹏<)</span> </div> </div> </div> |
