rickvanlieshout.com/src/components/Feed/Feed.module.scss
2022-04-16 14:53:32 +00:00

74 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(0.5);
}
.title {
font-size: $typographic-base-font-size * 1.6875;
@include line-height(1.5);
@include margin-top(0);
@include margin-bottom(0.5);
.link {
color: $color-base;
&:hover,
&:focus {
border-bottom: 1px solid $color-base;
color: $color-base;
}
}
}
.description {
font-size: $typographic-base-font-size;
@include line-height(1);
@include margin-bottom(0.75);
}
.meta {
.time {
color: $color-base;
font-size: $typographic-small-font-size;
font-weight: 600;
text-transform: uppercase;
}
.divider {
@include margin(0, 0.5);
}
.category {
.link {
color: $color-secondary;
font-size: $typographic-small-font-size;
font-weight: 600;
text-transform: uppercase;
&:hover,
&:focus {
color: $color-primary;
}
}
}
}
.more {
color: $color-primary;
font-size: $typographic-base-font-size;
&:hover,
&:focus {
border-bottom: 1px solid $color-primary;
color: $color-primary;
}
}
}
}