mirror of
https://github.com/mastermindzh/rickvanlieshout.com
synced 2025-02-11 13:02:52 +01:00
81 lines
1.4 KiB
SCSS
81 lines
1.4 KiB
SCSS
|
@import '../../assets/scss/variables';
|
||
|
@import '../../assets/scss/mixins';
|
||
|
|
||
|
.feed {
|
||
|
&__item {
|
||
|
@include margin-bottom(1.25);
|
||
|
|
||
|
&:last-child {
|
||
|
@include margin-bottom(.5);
|
||
|
}
|
||
|
|
||
|
&-title {
|
||
|
font-size: $typographic-base-font-size * 1.6875;
|
||
|
@include line-height(1.5);
|
||
|
@include margin-top(0);
|
||
|
@include margin-bottom(.5);
|
||
|
|
||
|
&-link {
|
||
|
color: $color-base;
|
||
|
|
||
|
&:hover,
|
||
|
&:focus {
|
||
|
color: $color-base;
|
||
|
border-bottom: 1px solid $color-base;
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
&-description {
|
||
|
font-size: $typographic-base-font-size;
|
||
|
@include line-height(1);
|
||
|
@include margin-bottom(.75);
|
||
|
}
|
||
|
|
||
|
&-meta {
|
||
|
&-time {
|
||
|
font-size: $typographic-small-font-size;
|
||
|
color: $color-base;
|
||
|
font-weight: 600;
|
||
|
text-transform: uppercase;
|
||
|
}
|
||
|
|
||
|
&-divider {
|
||
|
margin: 0 5px;
|
||
|
}
|
||
|
|
||
|
&-category {
|
||
|
&-link {
|
||
|
font-size: $typographic-small-font-size;
|
||
|
color: $color-secondary;
|
||
|
font-weight: 600;
|
||
|
text-transform: uppercase;
|
||
|
|
||
|
&:hover,
|
||
|
&:focus {
|
||
|
color: $color-primary;
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
&-readmore {
|
||
|
font-size: $typographic-base-font-size;
|
||
|
color: $color-primary;
|
||
|
|
||
|
&:hover,
|
||
|
&:focus {
|
||
|
color: $color-primary;
|
||
|
border-bottom: 1px solid $color-primary;
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|