Files

40 lines
852 B
SCSS
Raw Permalink Normal View History

2024-12-10 16:40:38 +01:00
///
/// Editorial by HTML5 UP
/// html5up.net | @ajlkn
/// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
///
/* Mini Posts */
.mini-posts {
article {
border-top: solid 1px _palette(border);
margin-top: _size(element-margin);
padding-top: _size(element-margin);
.image {
display: block;
margin: 0 0 (_size(element-margin) * 0.75) 0;
2024-12-30 22:43:08 +01:00
width: unset;
2024-12-10 16:40:38 +01:00
img {
display: block;
2024-12-30 22:43:08 +01:00
width: unset;
2024-12-10 16:40:38 +01:00
}
}
2024-12-30 22:43:08 +01:00
a {
.fav-image {
max-width: 100%; /* Scale down if the container is smaller than the image */
height: auto; /* Maintain aspect ratio */
display: flex;
justify-content: center; /* Horisontal centrering */
align-items: center; /* Vertikal centrering */
2024-12-30 22:43:08 +01:00
}
}
2024-12-10 16:40:38 +01:00
&:first-child {
border-top: 0;
margin-top: 0;
padding-top: 0;
}
}
}