Files
nhgooi.nl/resources/assets/sass/components/_blog.scss
Jorit Tijsen 4aa1fef3ad New mobile header
Add job pages
More news button on home page links to news page
Small mobile fixes for new page and other pages
2024-04-03 16:38:10 +02:00

58 lines
921 B
SCSS
Vendored

@use "../abstracts/mixin" as *;
@use "../abstracts/variables" as *;
.blog {
@include reset-list;
.post {
margin-bottom: 27px;
&:not(.auto_height) {
height: 90px;
}
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;
&.clipText {
display: -webkit-box;
}
}
}
.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;
}
}
}