Files
nhgooi.nl/resources/assets/sass/components/_blog.scss
2024-03-13 17:44:35 +01:00

50 lines
752 B
SCSS
Vendored

@use "../abstracts/mixin" as *;
.blog {
@include reset-list;
.post {
margin-bottom: 27px;
img {
width: 100%;
height: 100%;
object-fit: cover;
}
.post_title {
margin: 0;
font-family: Montserrat, serif;
font-size: 14px;
font-weight: 600;
line-height: 1.43;
color: #1a1a1a;
a {
text-decoration: none;
display: inline-block;
color: #1a1a1a;
}
}
.col-8 {
padding: 0;
}
.post_date {
@include post_date;
}
.disabled {
color: #A1A1A1;
cursor: not-allowed;
}
.post_body {
font-family: Nunito, serif;
font-size: 15px;
line-height: 1.6;
color: #282828;
}
}
}