center align grid while left aligning projects

Fixes #573
This commit is contained in:
Matthew Taylor 2016-06-15 09:34:15 -04:00
parent 55765551ae
commit 2193914650
2 changed files with 55 additions and 40 deletions

View file

@ -2,16 +2,25 @@
.grid {
display: inline-block;
width: 100%;
$project-width: 200px;
$project-height: 150px;
$gallery-width: 200px;
$gallery-height: 118px;
.flex-row {
margin: 0 auto;
padding: 12px;
justify-content: space-around;
align-items: center;
width: (96px + (4 * $project-width)) / $em;
justify-content: flex-start;
}
.thumbnail {
padding: 12px;
&.project {
$project-width: 200px;
$project-height: 150px;
width: $project-width;
img {
@ -21,8 +30,6 @@
}
&.gallery {
$gallery-width: 200px;
$gallery-height: 118px;
width: $gallery-width;
img {
@ -40,4 +47,12 @@
@media only screen and (max-width: $tablet - 1) {
flex-direction: column;
}
@media only screen and (max-width: $desktop - 1) {
.flex-row {
padding: 12px 0;
width: 100%;
justify-content: space-around;
}
}
}