52 lines
680 B
SCSS
52 lines
680 B
SCSS
/*
|
|
* The top-level heading
|
|
*/
|
|
|
|
.main-heading {
|
|
@include heading-style;
|
|
|
|
& {
|
|
margin-top: 0;
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
& > h1 {
|
|
@include font-size(8);
|
|
line-height: 1.2;
|
|
font-weight: 200;
|
|
font-family: $body-font;
|
|
margin: 0;
|
|
}
|
|
|
|
& > h1 > em {
|
|
font-style: normal;
|
|
color: lighten($gray-text, 20%);
|
|
}
|
|
}
|
|
|
|
.main-heading.-center {
|
|
& > h1 {
|
|
text-align: center;
|
|
}
|
|
|
|
& > .pubbox {
|
|
margin-top: 16px;
|
|
text-align: center;
|
|
}
|
|
|
|
@media (min-width: 769px) {
|
|
& > .pubbox {
|
|
margin-top: 24px;
|
|
margin-bottom: 24px;
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Add some space in preview mode
|
|
*/
|
|
|
|
.PreviewMode .main-heading {
|
|
margin-top: 16px;
|
|
}
|