diff options
| author | s-ol <s+removethis@s-ol.nu> | 2023-09-02 11:41:09 +0000 |
|---|---|---|
| committer | s-ol <s+removethis@s-ol.nu> | 2023-09-02 11:41:09 +0000 |
| commit | ee6ca5b32ea7e02a98e7cf5f150636a8d31b60cc (patch) | |
| tree | 50c4be26c87cc73b882a3acdb98f7289ac5a154a /style.css | |
| parent | add synthesizer (diff) | |
| download | isomorphic-kb-explorer-main.tar.gz isomorphic-kb-explorer-main.zip | |
Diffstat (limited to '')
| -rw-r--r-- | style.css | 31 |
1 files changed, 25 insertions, 6 deletions
@@ -54,15 +54,35 @@ aside.layout > svg { height: 100%; } -.controls { +.panel { display: flex; flex-direction: column; - justify-content: center; + gap: 0.75rem; padding: 1rem 1.5rem; - gap: 0.25rem; background: #eeeeee; } +.panel section + section { + padding-top: 0.3rem; + border-top: 1px solid #b9bdc1; +} + +.controls { + display: flex; + flex-direction: column; + justify-content: flex-start; + overflow: hidden; + gap: 0.25rem; +} + +.controls--minimized { + max-height: 1.25em; +} + +#layout.controls { + justify-content: center; +} + /* controls */ .control { display: flex; @@ -77,8 +97,6 @@ aside.layout > svg { } .control--preset { - padding-bottom: 0.5rem; - border-bottom: 1px solid #b9bdc1; margin-bottom: 0.25rem; } @@ -86,10 +104,11 @@ aside.layout > svg { flex: 1; } -.control--preset label:first-child { +.controls .control:first-child label:first-child { font-weight: bold; } +.control--toggle label:first-child, .control--axis label:first-child { flex: 1; } |
