diff options
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 */ |
