diff options
| author | Kévin Le Gouguec <kevin.legouguec@gmail.com> | 2021-03-18 18:38:56 +0100 |
|---|---|---|
| committer | Kévin Le Gouguec <kevin.legouguec@gmail.com> | 2021-03-18 18:38:56 +0100 |
| commit | 7530c8dd86b4f4dd8e0f340ac6b939c4f29728c0 (patch) | |
| tree | 7d12d2c9cee5798648589c556c5a17c88e077fb4 /stylesheets | |
| parent | 86dc323c1a2d697a62d7b51dc3f0fb8161e81d78 (diff) | |
| download | quatuorbellefeuille.com-7530c8dd86b4f4dd8e0f340ac6b939c4f29728c0.tar.xz | |
Add icons for program duration and piece list
Diffstat (limited to 'stylesheets')
| -rw-r--r-- | stylesheets/programmes.css | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/stylesheets/programmes.css b/stylesheets/programmes.css index 914149b..1db2550 100644 --- a/stylesheets/programmes.css +++ b/stylesheets/programmes.css @@ -59,6 +59,23 @@ details.program[open] > summary > img.button.close { right: 0; } +.info { + display: grid; + grid-template-columns: 2em 1fr; +} +.info.duration::before { + content: "🕑"; +} +.info.pieces::before { + content: "🎼"; +} +.info::before { + grid-column: 1; +} +.info > * { + grid-column: 2; +} + details.program > *:nth-child(3) { color: var(--gold); font-weight: 600; |
