diff options
author | Joris | 2024-01-03 00:01:38 +0100 |
---|---|---|
committer | Joris | 2024-01-03 00:01:38 +0100 |
commit | b5292689534c00918675223d1f36174bbf44406f (patch) | |
tree | d2f70d1ce44b3647c143a2f43926a97203e259e0 /public/main.css | |
parent | 9c71ea5a80eed021cfc1a269a9a176b059eb8d4f (diff) |
Provide tonality and selector to change
Diffstat (limited to 'public/main.css')
-rw-r--r-- | public/main.css | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/public/main.css b/public/main.css index d5f941f..236ddc0 100644 --- a/public/main.css +++ b/public/main.css @@ -63,11 +63,17 @@ body { width: fit-content; } -.g-Chords { +.g-Chords__Tonality { + display: flex; + align-items: center; + gap: 0.5rem; +} + +.g-Chords__Table { border-collapse: collapse; } -.g-Chords td { +.g-Chords__Cell { width: 4rem; text-align: center; border-left: 1px solid black; @@ -75,6 +81,12 @@ body { padding: 0.5rem 0; } +.g-Chords__Chord:not(:last-child):after { + display: inline-block; + content: "/"; + margin: 0 0.5rem; +} + .g-Lyrics__Paragraph { display: flex; flex-direction: column; |