papercss/src/components/_article.scss

40 lines
458 B
SCSS
Raw Normal View History

article {
2017-11-24 08:56:46 +01:00
.article-title {
font-size: 3rem;
}
.article-meta {
font-size: 15px;
color: $muted;
2017-11-24 08:56:46 +01:00
a {
color: $muted-text;
2017-11-24 08:56:46 +01:00
background-image: none;
&:hover {
color: $light-dark;
2017-11-24 08:56:46 +01:00
}
}
}
.text-lead {
font-size: 30px;
line-height: 1.3;
margin: 35px 0px;
2017-12-23 09:43:23 +01:00
}
button {
&:not(:first-of-type) {
margin-left: 2rem;
@include resp(xs) {
margin-left: 0;
}
}
}
p {
line-height: 1.6;
}
2017-11-25 07:27:15 +01:00
}