From 46520b85b16c7900f76bcdef451a5e38f6245104 Mon Sep 17 00:00:00 2001 From: Ian Weller Date: Thu, 6 Apr 2017 14:02:46 -0400 Subject: [PATCH] I think it's finished. I have styled and added all I think I can for the Central Swing part of the site. --- css/app.css | 7 +++++++ parts/glm-blocks.php | 13 ++++++++++++- scss/_main.scss | 9 +++++++++ 3 files changed, 28 insertions(+), 1 deletion(-) diff --git a/css/app.css b/css/app.css index 817e422..548438b 100644 --- a/css/app.css +++ b/css/app.css @@ -6993,6 +6993,13 @@ main#golf-template img.orb-shadow { top: -6px; } } main#golf-template #content-wrapper { top: 0; } + main#golf-template #content-wrapper h5 { + font-size: 2.25rem; + font-family: "Kaushan Script"; + color: #1F5426; } + main#golf-template #content-wrapper h6 { + font-size: 1.4375rem; + color: #859878; } main.search-results #head-img { margin: -280px auto 0; } diff --git a/parts/glm-blocks.php b/parts/glm-blocks.php index c21f6cf..a517340 100644 --- a/parts/glm-blocks.php +++ b/parts/glm-blocks.php @@ -1,5 +1,16 @@ - +ID); +switch ($page_template) { +case 'page-golf-template.php': + $defaultBlockGroup = GOLF_BLOCKS; + break; +default: + $defaultBlockGroup = DEFAULT_BLOCKS; + break; +} +?> +
diff --git a/scss/_main.scss b/scss/_main.scss index a8c41cc..04a482e 100644 --- a/scss/_main.scss +++ b/scss/_main.scss @@ -375,6 +375,15 @@ main#golf-template{ } #content-wrapper{ top: 0; + h5 { + font-size: rem-calc(36); + font-family: "Kaushan Script"; + color: #1F5426; + } + h6 { + font-size: rem-calc(23); + color: #859878; + } } } main.search-results { -- 2.17.1