diff options
| author | LLLL Colonq <llll@colonq> | 2026-05-26 03:55:41 -0400 |
|---|---|---|
| committer | LLLL Colonq <llll@colonq> | 2026-05-26 03:55:41 -0400 |
| commit | 188643eccb13452f0e77ccea2a6e1baf6d5320b3 (patch) | |
| tree | 468ce87ba5a8357f7293741c827a7a4e5ced7059 /assets/css/soundboard.css | |
| parent | f776dc83178d1606b80f068e1e49fb9e53f62365 (diff) | |
Big refactor, jam
Diffstat (limited to 'assets/css/soundboard.css')
| -rw-r--r-- | assets/css/soundboard.css | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/assets/css/soundboard.css b/assets/css/soundboard.css new file mode 100644 index 0000000..9e5b966 --- /dev/null +++ b/assets/css/soundboard.css @@ -0,0 +1,55 @@ +/* soundboard */ +#lcolonq-soundboard { + color: white; + background-color: black; + overflow-y: scroll; + height: auto; + min-height: 100vh; + display: flex; + flex-direction: column; + align-items: center; +} +#lcolonq-soundboard-container { + top: 0px; + width: min(90vw, 30rem); + height: 100%; +} +#lcolonq-soundboard-entryframe { + overflow: hidden; + margin-top: 3rem; + margin-bottom: 3rem; + margin-left: 2rem; + margin-right: 2rem; +} +#lcolonq-soundboard-entry { + font-size: 30pt; + width: calc(100% - 2.2rem); + padding: 1rem; + color: white; + background-color: #111111; + border: 0.1rem solid darkgrey; +} +#lcolonq-soundboard-entry:focus { + outline: none; +} +#lcolonq-soundboard-entrytext { + white-space: nowrap; + color: darkgrey; +} +#lcolonq-soundboard-docs { + display: grid; + gap: 1rem; + grid-auto-flow: dense; + grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr)); + grid-auto-rows: minmax(10rem, auto); + margin-bottom: 1rem; +} +.lcolonq-soundboard-doc { + border: 0.1rem solid darkgrey; + padding: 0.5rem; +} +.lcolonq-soundboard-doc h3 { + text-align: center; + margin-top: 0px; + margin-bottom: 0.5rem; +} |
