Skip to content
Snippets Groups Projects
Commit 9b2f6249 authored by Matthew Eppelsheimer's avatar Matthew Eppelsheimer
Browse files

Make header margin an overridable setting.

css/theme/template/settings.scss adds the $headingMargin variable, set to `0 0 20px 0`.
css/theme/template/theme.scss uses $headingMargin to set margin on headers.
parent 7d19b4f7
No related branches found
No related tags found
No related merge requests found
......@@ -10,6 +10,7 @@ $mainFontSize: 36px;
$mainColor: #eee;
// Headings
$headingMargin: 0 0 20px 0;
$headingFont: 'League Gothic', Impact, sans-serif;
$headingColor: #eee;
$headingLineHeight: 0.9em;
......
......@@ -33,7 +33,7 @@ body {
.reveal h4,
.reveal h5,
.reveal h6 {
margin: 0 0 20px 0;
margin: $headingMargin;
color: $headingColor;
font-family: $headingFont;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment