diff options
| -rw-r--r-- | stylesheets/programmes.css | 22 |
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; +} |
