personal_site/_sass/blogroll.scss
2023-10-10 13:31:34 +02:00

47 lines
677 B
SCSS

$image_size: 7em;
$left_pad: 8em;
h2.blogroll-title {
a {
text-decoration: none;
}
}
figure.blogroll {
img, svg {
margin-bottom: 0;
}
}
article.blogroll {
h2 {margin-top: 0;}
section.title {
padding-left: $left_pad;
}
summary {padding-left: $left_pad;}
img {
float:left;
margin-right: 1em;
max-width: $image_size;
max-height: $image_size;
border-radius: 0.5em;
}
}
@media
only screen and (max-width: 500px)
{
article.blogroll {
summary {
padding-left: 0;
}
h2 {
font-size: 1.2em;
}
}
}