Files
nhgooi.nl/resources/assets/sass/components/_blog.scss
Jorit Tijsen 1d94e7da7f Add some variables to the scss files
Use the period API call for the program schema
2024-03-20 17:54:10 +01:00

51 lines
805 B
SCSS
Vendored

@use "../abstracts/mixin" as *;
@use "../abstracts/variables" 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: $text-color;
a {
text-decoration: none;
display: inline-block;
color: $text-color;
}
}
.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: $text-dark-color;
}
}
}