X-Git-Url: https://git.cworth.org/git?p=lmno.games;a=blobdiff_plain;f=empathy%2Fempathy.css;h=8a3f36c7384aeaf3596fedc35fecc40963de2097;hp=36281bc3ab37d6f24d072bd3f152e37d9a28d5c2;hb=e4c308c3331de77071170b0711505a990eaba617;hpb=00002a9f80dae904c1629f2d0b06d2acc89e94bf diff --git a/empathy/empathy.css b/empathy/empathy.css index 36281bc..8a3f36c 100644 --- a/empathy/empathy.css +++ b/empathy/empathy.css @@ -42,6 +42,7 @@ margin-bottom: 0.25em; padding: 0; border-radius: 10px; + position: relative; } .ambiguity-button { @@ -100,3 +101,36 @@ transition-duration: 2s; transition-delay: 1s; } + +.label { + border-radius: 4px; + background-color: var(--accent-color-bright); + color: var(--text-fg-on-accent-bright); + font-size: 72%; + font-weight: bold; + padding: 0.25em; + text-transform: uppercase; +} + +.star-button { + color: white; + opacity: 0.5; + font-size: 125%; + font-weight: bold; + cursor: pointer; + position: absolute; + right: 0.5em; + top: 0; +} + +@media (hover:hover) { + .star-button:hover { + color: var(--accent-color-bright); + opacity: 1.0; + } +} + +.star-button.selected { + color: var(--accent-color-bright); + opacity: 1.0; +}