2019-11-04 13:09:44 +00:00
|
|
|
.related {
|
2019-11-20 17:45:46 +00:00
|
|
|
margin: 2rem 0;
|
2019-11-04 13:09:44 +00:00
|
|
|
padding: 0.5rem;
|
|
|
|
width: 100%;
|
2019-11-19 17:54:47 +00:00
|
|
|
position: relative;
|
|
|
|
|
2019-11-04 13:09:44 +00:00
|
|
|
@include flexbox();
|
|
|
|
@include align-items(center);
|
|
|
|
@include flex-direction(column);
|
|
|
|
|
2019-11-19 17:54:47 +00:00
|
|
|
&__title {
|
2019-11-20 17:45:46 +00:00
|
|
|
font-size: 32px;
|
2019-11-04 13:09:44 +00:00
|
|
|
@include themify($themes) {
|
|
|
|
color: themed('related-header-title-color');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-19 17:54:47 +00:00
|
|
|
&__link {
|
2019-11-20 17:45:46 +00:00
|
|
|
font-size: 16.8px;
|
2020-01-29 15:02:49 +00:00
|
|
|
font-family: $title-font;
|
|
|
|
|
2019-11-04 13:09:44 +00:00
|
|
|
@include themify($themes) {
|
|
|
|
color: themed('related-link-color');
|
|
|
|
}
|
|
|
|
}
|
2019-11-28 15:43:35 +00:00
|
|
|
|
|
|
|
&-ul {
|
|
|
|
@include align-self(center);
|
|
|
|
list-style-type: disc;
|
|
|
|
}
|
2019-11-04 13:09:44 +00:00
|
|
|
}
|