From 64667dc59a35ae1d1b17ad53b603af16f9d87b2e Mon Sep 17 00:00:00 2001 From: Michael McCune Date: Thu, 23 Aug 2018 10:34:32 -0400 Subject: [PATCH] add styling for div.title blocks This change is to help the modular template format look better on our generated pages. The "title" blocks are created as div's in asciidoc and these need some styling. This change will make them appear like h2 elements in our pages. --- css/radanalytics.css | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/css/radanalytics.css b/css/radanalytics.css index 53557713..9eee9a8e 100644 --- a/css/radanalytics.css +++ b/css/radanalytics.css @@ -102,3 +102,11 @@ a.howdoi-link { div.margin-top-1 { margin-top: 1em; } + +/* this is for asciidoc title blocks, basically looks like an h2 */ +div.title { + font-size: 26px; + font-weight: 400; + margin-bottom: 10px; + margin-top: 20px; +}