diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2021-08-24 19:30:00 +0200 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2021-08-24 19:30:00 +0200 |
| commit | 5fffdeb831a7fdc6a8e4c58c7d477dc4af78ec68 (patch) | |
| tree | ae561379c34dc3e717ac76c80023aace388afaf5 /public | |
| parent | 27c24cd02c8a50a7c9e8f42ce6bfbbbeb217df61 (diff) | |
css
Diffstat (limited to 'public')
| -rw-r--r-- | public/assets/css/css.css | 18 |
1 files changed, 14 insertions, 4 deletions
diff --git a/public/assets/css/css.css b/public/assets/css/css.css index a32dd6a..23fb60b 100644 --- a/public/assets/css/css.css +++ b/public/assets/css/css.css @@ -30,16 +30,17 @@ body { padding: 1rem; margin: 1rem 2rem; background: rgba(0, 0, 0, 0.5); - text-transform: capitalize; - font-variant: small-caps; color: #fff; transition: opacity 0.2s; + text-transform: capitalize; + font-variant: small-caps; } -.legend div { +.legend .category { cursor: pointer; } -.legend div:hover { +.legend .category:hover { text-decoration: underline; + opacity: 1; } .legend .selected { text-decoration: underline; @@ -47,6 +48,15 @@ body { .legend .unselected { opacity: 0.8; } +.legend .removeSelection { + cursor: pointer; + opacity: 0.6; + margin-bottom: 0.5rem; +} +.legend .removeSelection:hover { + opacity: 0.8; + text-decoration: underline; +} /** Detail view */ |
