papercss/src/components/_article.scss

39 lines
546 B
SCSS
Raw Permalink Normal View History

article {
2018-05-24 14:13:53 +02:00
.article-title {
font-size: 3rem;
}
2017-11-24 08:56:46 +01:00
2018-05-24 14:13:53 +02:00
.article-meta {
2020-06-01 23:02:51 +02:00
@include color(color, 'muted-text');
2018-05-24 14:13:53 +02:00
font-size: 15px;
2017-11-24 08:56:46 +01:00
2018-05-24 14:13:53 +02:00
a {
2020-06-01 23:02:51 +02:00
@include color(color, 'muted-text');
2018-05-24 14:13:53 +02:00
background-image: none;
2017-11-24 08:56:46 +01:00
2018-05-24 14:13:53 +02:00
&:hover {
2020-06-01 23:02:51 +02:00
@include color(color, 'light-dark');
2018-05-24 14:13:53 +02:00
}
}
}
2017-11-24 08:56:46 +01:00
2018-05-24 14:13:53 +02:00
.text-lead {
font-size: 30px;
line-height: 1.3;
margin: 35px;
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
}