summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKévin Le Gouguec <kevin.legouguec@gmail.com>2021-02-23 23:46:28 +0100
committerKévin Le Gouguec <kevin.legouguec@gmail.com>2021-02-23 23:46:28 +0100
commite2faa1435b9543e241a7beaa5c729b036a297014 (patch)
tree9c5ad426e70e06f51aab63a634d8917d3e56338a
parentc9415599cafd67463b6a0a2781ecb47d14fdf976 (diff)
downloadquatuorbellefeuille.com-e2faa1435b9543e241a7beaa5c729b036a297014.tar.xz
Add some more style to programs
-rw-r--r--stylesheets/programmes.css22
1 files changed, 22 insertions, 0 deletions
diff --git a/stylesheets/programmes.css b/stylesheets/programmes.css
index 877054b..3752a2a 100644
--- a/stylesheets/programmes.css
+++ b/stylesheets/programmes.css
@@ -17,6 +17,7 @@ details.program {
details.program > summary {
display: grid;
grid-template-columns: 4fr 5fr 4em;
+ grid-gap: 0.8em;
line-height: 2em;
list-style: none;
cursor: pointer;
@@ -55,3 +56,24 @@ details.program[open] > summary > img.button.close {
details.program > summary ~ * {
margin-left: 2em;
}
+
+details.program blockquote {
+ color: #c55a11;
+}
+
+details.program blockquote p::before {
+ content: open-quote;
+}
+details.program blockquote p::after {
+ content: close-quote;
+}
+
+ol.pieces {
+ list-style: none;
+ padding-left: 0;
+}
+
+ol.pieces > li.intermission {
+ margin-left: 4em;
+ font-style: italic;
+}