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.
This commit is contained in:
Matthew Eppelsheimer 2013-07-20 21:32:51 -07:00
parent 7d19b4f7ce
commit 9b2f62496c
2 changed files with 2 additions and 1 deletions

View File

@ -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;

View File

@ -33,7 +33,7 @@ body {
.reveal h4,
.reveal h5,
.reveal h6 {
margin: 0 0 20px 0;
margin: $headingMargin;
color: $headingColor;
font-family: $headingFont;