diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2021-04-10 17:19:30 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2021-04-10 17:19:30 +0200 |
commit | b0cd7244c9375511c8b9ef99be7833f5287b4fb1 (patch) | |
tree | bfd80daafcb560a9c3c89783a868eb5f5ac9da69 /website | |
parent | website: Style list bullets. (diff) |
website: Add focus styles for accessibility.
Diffstat (limited to 'website')
-rw-r--r-- | website/static/css/main.css | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/website/static/css/main.css b/website/static/css/main.css index 5565423..aaca875 100644 --- a/website/static/css/main.css +++ b/website/static/css/main.css | |||
@@ -101,6 +101,10 @@ p + p { | |||
101 | height: 15rem; | 101 | height: 15rem; |
102 | } | 102 | } |
103 | 103 | ||
104 | #header .logo:focus { | ||
105 | border-bottom: 1px dotted #ffd166; | ||
106 | } | ||
107 | |||
104 | #header .logo.small { | 108 | #header .logo.small { |
105 | height: 4.5rem; | 109 | height: 4.5rem; |
106 | } | 110 | } |
@@ -313,6 +317,9 @@ a:visited { | |||
313 | border-width: 2px; | 317 | border-width: 2px; |
314 | text-decoration: none; | 318 | text-decoration: none; |
315 | } | 319 | } |
320 | a:focus { | ||
321 | border: 1px dotted #ffd166; | ||
322 | } | ||
316 | a img { outline : none; } | 323 | a img { outline : none; } |
317 | img { border: none; } | 324 | img { border: none; } |
318 | 325 | ||