diff options
author | lonkaars <l.leblansch@gmail.com> | 2021-04-18 13:42:44 +0200 |
---|---|---|
committer | lonkaars <l.leblansch@gmail.com> | 2021-04-18 13:42:44 +0200 |
commit | 2527a6a2e0a9e679cb5a19abb56ad6a363cf980d (patch) | |
tree | ddfca928446d6b0c8dbeef3495bf8ff0521d1309 /styles/ui.css | |
parent | 8ceff7d77c55d32db308dee85debf6bb3bcb9c55 (diff) |
settings page / balloon+tuitje without inline css done
Diffstat (limited to 'styles/ui.css')
-rw-r--r-- | styles/ui.css | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/styles/ui.css b/styles/ui.css index f1d65e2..b8cd44c 100644 --- a/styles/ui.css +++ b/styles/ui.css @@ -19,3 +19,49 @@ font-weight: 600; } +.button.iconlabel, +.button.colorpicker { + margin-left: var(--spacing-medium); +} + +.button.colorpicker { + --color: var(--gray-100); + --background: #ff00ff; + + background-color: var(--background); + color: var(--color); + border-width: 2px; + border-style: solid; + border-color: var(--color); +} + +.button.iconlabel .label { + margin: 3px; + margin-left: 8px; +} + +.button.colorpicker .labelwrapper { + width: 150px; + height: 24px; +} + +.button.colorpicker .labelwrapper .label { + position: absolute; + top: 50%; + left: 50%; + transform: translate(-50%, -50%); + font-feature-settings: "tnum", "ss01"; +} + +.bubble { + margin: 0; + overflow: visible; + left: 50%; + top: -24px; + transform: translateY(-100%) translateX(-50%); +} + +.bubble .tuitje { + bottom: -12px; + transform: translate(-50%, 0%) rotate(0deg); +} |