diff options
author | Joris | 2022-06-12 14:10:00 +0200 |
---|---|---|
committer | Joris | 2022-06-12 14:10:00 +0200 |
commit | 91438efeff2cdad7997687ebf4139ce0723982b9 (patch) | |
tree | bee0a707370a1123314a584c4a246889cdc7e203 /public | |
parent | 1e0c8631f228ceb251f838b40d0a6efae0b4cf4d (diff) |
Play drum sound when clicking on the name
Diffstat (limited to 'public')
-rw-r--r-- | public/main.css | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/public/main.css b/public/main.css index fbc37c4..134d92b 100644 --- a/public/main.css +++ b/public/main.css @@ -1,3 +1,5 @@ +/* Constants */ + :root { --color-block: lightgray; --color-block-checked: lightgreen; @@ -9,6 +11,16 @@ --spacing-elephant: 4rem; } +/* Reset */ + +ol { + list-style-type: none; + margin: 0; + padding: 0; +} + +/* Styles */ + body { margin: var(--spacing-dog); } @@ -36,8 +48,21 @@ body { gap: var(--spacing-dog); } +.g-Sequencer__Grid { + display: flex; + gap: var(--spacing-cat); +} + +.g-Sequencer__Sounds > li { + display: flex; + align-items: center; + height: var(--spacing-horse); + cursor: pointer; +} + .g-Sequencer__Blocks { display: flex; + align-items: center; gap: var(--spacing-cat); } |