achille-press/sass/media/_galleries.scss
2017-06-14 14:18:22 -04:00

21 lines
323 B
SCSS

.gallery {
margin-bottom: 1.5em;
}
.gallery-item {
display: inline-block;
text-align: center;
vertical-align: top;
width: 100%;
// Loops to enumerate the classes for gallery columns.
@for $i from 2 through 9 {
.gallery-columns-#{$i} {
max-width: ( 100% / $i );
}
}
}
.gallery-caption {
display: block;
}