1
0
mirror of https://github.com/danbee/danbarber.me synced 2025-03-04 08:59:10 +00:00
danbarber.me/_assets/stylesheets/parts/photos.css.scss

23 lines
364 B
SCSS

$photo-wide-max-width: 1024px;
figure.photo-wide {
padding-left: 0;
padding-right: 0;
}
@media only screen and (max-width: 1048px) {
figure.photo-wide {
max-width: 100%;
img {
margin: -0.5em 0;
padding: 0.5em 0;
}
}
}
@media only screen and (min-width: 1049px) {
figure.photo-wide {
max-width: $photo-wide-max-width;
}
}