diff options
author | n-peugnet <n.peugnet@free.fr> | 2022-04-18 01:14:45 +0200 |
---|---|---|
committer | n-peugnet <n.peugnet@free.fr> | 2022-04-18 01:14:45 +0200 |
commit | 9762c5df44167b42ae577bd385a80d351c93bca7 (patch) | |
tree | 00d8903b76d83aa1cd427d0840ca7aec738bd9cb | |
parent | c389dab1b81fc4902b78e008af1dc51303a05b92 (diff) | |
download | club1-docs-n-peugnet-style-blockquote.tar.gz club1-docs-n-peugnet-style-blockquote.zip |
style: imitate github blockquote CSSn-peugnet-style-blockquote
-rw-r--r-- | _static/club1.css | 18 |
1 files changed, 13 insertions, 5 deletions
diff --git a/_static/club1.css b/_static/club1.css index 78b23ac..bfe6a6a 100644 --- a/_static/club1.css +++ b/_static/club1.css @@ -3,6 +3,14 @@ max-height: 30rem; } +/* Override blockquotes style */ +.rst-content blockquote { + border-left: #bbb solid 4px; + color: #555; + margin-left: 0; + padding-left: 20px; +} + /* Specific styles for links to glossary terms */ .rst-content .xref.std-term { text-decoration: underline dotted 1px; @@ -10,9 +18,9 @@ /* Specific styles for external links */ .rst-content a.reference.external::after { - font-family: FontAwesome; - content: ""; - vertical-align: top; - font-size: 70%; - margin: 0 .2em; + font-family: FontAwesome; + content: ""; + vertical-align: top; + font-size: 70%; + margin: 0 .2em; } |