diff options
author | Jesús <heckyel@hyperbola.info> | 2019-02-09 22:17:27 -0500 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2019-02-09 22:17:27 -0500 |
commit | d2334ce20b01d994b281e52ee0593494c0d4a8dc (patch) | |
tree | 1f6c074d77dd973ff5ca11942d9ce084ced67190 | |
parent | 154794a3de600882b5f8b38017708715af7ff81b (diff) | |
download | cl-theme-d2334ce20b01d994b281e52ee0593494c0d4a8dc.tar.lz cl-theme-d2334ce20b01d994b281e52ee0593494c0d4a8dc.tar.xz cl-theme-d2334ce20b01d994b281e52ee0593494c0d4a8dc.zip |
improve blockquote
-rw-r--r-- | css/style.css | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/css/style.css b/css/style.css index 139da90..22f8e7c 100644 --- a/css/style.css +++ b/css/style.css @@ -42,6 +42,27 @@ a.pagination-next.disabled { .content blockquote { background: black; + color: white; + border-left: 4px solid #dbdbdb; + margin: 1.5rem 1rem; + padding: 1.5rem 1rem; +} + +.content blockquote p { + display: contents; +} + +.content blockquote:before { + opacity: 0.5; + content: open-quote; + font-size: 4rem; + line-height: .1em; + margin-right: .25em; + vertical-align: -0.4em; +} + +*, *:after, *:before, legend { + box-sizing: border-box; } .content dl, |