44 lines
564 B
SCSS
44 lines
564 B
SCSS
/*
|
|
* The top-level heading
|
|
*/
|
|
|
|
.main-heading {
|
|
@include heading-style;
|
|
|
|
& {
|
|
margin-top: 32px;
|
|
}
|
|
|
|
& > 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;
|
|
}
|
|
|
|
& > .adbox {
|
|
margin-top: 16px;
|
|
text-align: center;
|
|
}
|
|
|
|
& > .adbox > .ad {
|
|
display: inline-block;
|
|
}
|
|
|
|
& > .adbox > .ad.-carbon {
|
|
margin-top: 16px;
|
|
}
|
|
}
|