This repository has been archived on 2020-05-08. You can view files and clone it, but cannot push or open issues or pull requests.
2014-07-28 13:35:53 +00:00
|
|
|
.gallery {
|
|
|
|
margin-bottom: 1.5em;
|
2020-05-03 23:26:48 +00:00
|
|
|
display: grid;
|
|
|
|
grid-gap: 1.5em;
|
2014-07-28 13:35:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.gallery-item {
|
|
|
|
display: inline-block;
|
|
|
|
text-align: center;
|
|
|
|
width: 100%;
|
2020-05-03 23:26:48 +00:00
|
|
|
}
|
2014-07-28 13:35:53 +00:00
|
|
|
|
2020-05-03 23:26:48 +00:00
|
|
|
// Loops to enumerate the classes for gallery columns.
|
|
|
|
@for $i from 2 through 9 {
|
2020-04-05 20:49:27 +00:00
|
|
|
|
2020-05-03 23:26:48 +00:00
|
|
|
.gallery-columns-#{$i} {
|
|
|
|
grid-template-columns: repeat($i, 1fr);
|
2015-02-10 05:11:59 +00:00
|
|
|
}
|
2014-07-28 13:35:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.gallery-caption {
|
|
|
|
display: block;
|
2016-07-11 13:42:08 +00:00
|
|
|
}
|