From a587aab215677ca6084cf7f0ef35b240100585bc Mon Sep 17 00:00:00 2001 From: Vicky Steeves Date: Tue, 22 Jan 2019 17:28:28 -0500 Subject: [PATCH 1/2] added self-hosted matomo analytics --- conf.py | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/conf.py b/conf.py index 2b1cf19..e004282 100644 --- a/conf.py +++ b/conf.py @@ -1221,7 +1221,24 @@ INDEX_DISPLAY_POST_COUNT = 6 # Google Analytics or whatever else you use. Added to the bottom of # in the default template (base.tmpl). # (translatable) -# BODY_END = "" +BODY_END = """ + + + + +""" # The possibility to extract metadata from the filename by using a # regular expression. From 369fba837a8fa498a04959bbb513f12ba796c49f Mon Sep 17 00:00:00 2001 From: Vicky Steeves Date: Thu, 28 Mar 2019 15:49:44 +0000 Subject: [PATCH 2/2] make display headings responsive --- themes/custom/assets/css/custom.css | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/themes/custom/assets/css/custom.css b/themes/custom/assets/css/custom.css index 80099a4..eaa832d 100644 --- a/themes/custom/assets/css/custom.css +++ b/themes/custom/assets/css/custom.css @@ -84,3 +84,27 @@ li { .btn-outline-primary{ border-color: #6695c4; } + +/* --------------------RESPONSIVE DISPLAY HEADINGS--------------------------*/ +@media (max-width: 575.98px) { + .display-1 { + font-size: 3rem; + font-weight: 300; + line-height: 1.0; + } + .display-2 { + font-size: 2.75rem; + font-weight: 300; + line-height: 1.0; + } + .display-3 { + font-size: 2.25rem; + font-weight: 300; + line-height: 1.0; + } + .display-4 { + font-size: 1.75rem; + font-weight: 300; + line-height: 1.0; + } +}