2016-05-10 00:54:46 -04:00
|
|
|
@import "../../frameless";
|
|
|
|
|
|
|
|
.grid {
|
2016-05-17 12:40:16 -04:00
|
|
|
display: inline-block;
|
2016-05-10 00:54:46 -04:00
|
|
|
padding: 12px;
|
|
|
|
justify-content: space-around;
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
.thumbnail {
|
|
|
|
padding: 12px;
|
|
|
|
|
|
|
|
&.project {
|
|
|
|
$project-width: 200px;
|
|
|
|
$project-height: 150px;
|
|
|
|
width: $project-width;
|
|
|
|
|
|
|
|
img {
|
|
|
|
width: $project-width;
|
|
|
|
height: $project-height;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.gallery {
|
|
|
|
$gallery-width: 200px;
|
|
|
|
$gallery-height: 118px;
|
|
|
|
width: $gallery-width;
|
|
|
|
|
|
|
|
img {
|
|
|
|
width: $gallery-width;
|
|
|
|
height: $gallery-height;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.column {
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media only screen and (max-width: $tablet - 1) {
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
}
|