From 601354b364911267763ac8536d9a738edf15a147 Mon Sep 17 00:00:00 2001 From: Mathew Byrne Date: Mon, 5 Nov 2018 13:32:38 -0800 Subject: [PATCH] Add blockquote breakout style --- docs/static/main.css | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/docs/static/main.css b/docs/static/main.css index e4b06d2062a..ed19dce5019 100644 --- a/docs/static/main.css +++ b/docs/static/main.css @@ -392,3 +392,24 @@ strong { } } + + +blockquote { + background-color: #fffaf3; + border-left-color: rgba(0, 0, 0, 0.1); + border-left-width: 9px; + border-left-style: solid; + padding: 1em 20px 1em 11px; + margin-bottom: 1em; + margin-left: -20px; + margin-right: -20px; +} + +blockquote p { + margin-bottom: 0; +} + +/* Blockquote headings. */ +blockquote p:first-of-type { + font-weight: bold; +}