dpaste/client/scss/components/_article.scss

34 lines
423 B
SCSS
Raw Normal View History

2018-03-24 18:57:05 +11:00
/*
Generic Content pages such as about or 404 error pages.
*/
article {
padding: 40px $boxPadding;
font-size: 16px;
font-weight: $baseFontRegular;
line-height: 24px;
max-width: 520px;
color: $textColor;
h2 {
font-size: 28px;
line-height: 36px;
margin: 0 0 30px 0;
}
p {
margin: 30px 0;
}
strong, b {
font-weight: $baseFontDemiBold;
}
2018-03-28 03:42:54 +11:00
@include colored-links;
2018-03-24 18:57:05 +11:00
}