diff options
| author | Jan Tuomi <jans.tuomi@gmail.com> | 2024-08-20 13:20:38 +0300 |
|---|---|---|
| committer | Jan Tuomi <jan@jantuomi.fi> | 2024-12-21 19:43:13 +0200 |
| commit | 3ea6154a9e75011c194820456b66fa00f12a55b7 (patch) | |
| tree | ab8923525fd05aa696f18fa176611800f0eeeea7 /static | |
| parent | d53e5e61d25405db63cc2e2817186d19dbff8189 (diff) | |
Style and a11y improvements
Diffstat (limited to 'static')
| -rw-r--r-- | static/styles.css | 22 |
1 files changed, 18 insertions, 4 deletions
diff --git a/static/styles.css b/static/styles.css index 21f742e..eb71d75 100644 --- a/static/styles.css +++ b/static/styles.css @@ -10,7 +10,7 @@ body { line-height: 24px; } -a:not(:visited) { +a { color: rgb(30, 99, 248); } @@ -53,7 +53,7 @@ input[type="submit"].red { button.blue, input[type="submit"].blue { - background-color: rgb(30, 99, 248);; + background-color: rgb(30, 99, 248); } button.yellow, @@ -166,7 +166,10 @@ th, td { } .display-mode-section input[type="submit"] { - margin-left: 10px; + text-decoration: underline; + color: rgb(30, 99, 248); + background: none; + padding: 5px 0; } .vote-list label, @@ -200,10 +203,21 @@ button#share-link-copy { line-height: 24px; } +.delete-voter-container { + display: flex; + flex-flow: row nowrap; + justify-content: flex-start; + align-items: center; +} + +.delete-voter-container span { + margin-bottom: 4px; +} + input[type="submit"].delete-voter-btn { margin-left: 5px; background: none; - padding: 0; + padding: 2px 4px; } /* This is to fix a CSS specificity issue with the .most-voted class */ |
