scratch-www/src/components/grid/grid.scss

128 lines
2.6 KiB
SCSS
Raw Normal View History

@import "../../frameless";
2016-08-08 08:38:32 -04:00
@import "../../colors";
.grid {
display: inline-block;
width: 100%;
$thumbnail-width: 220px;
$thumbnail-inner-width: 204px;
$project-height: 208px;
$gallery-height: 164px;
.flex-row {
margin: 0 auto;
2016-08-24 10:55:13 -04:00
padding: 12px 0;
width: $cols12;
justify-content: flex-start;
2016-08-23 10:11:18 -04:00
}
.thumbnail {
2016-08-24 10:55:13 -04:00
margin: 7px;
border-radius: 4px;
box-shadow: 0 0 0 1px $active-gray;
2016-08-24 10:55:13 -04:00
background-color: $ui-white;
padding-bottom: 4px;
width: $thumbnail-width;
.thumbnail-image {
margin: 8px auto;
width: $thumbnail-inner-width;
}
2016-08-24 10:55:13 -04:00
.thumbnail-info {
margin: 0 auto;
width: $thumbnail-inner-width;
2016-08-24 10:55:13 -04:00
.creator-image {
float: left;
img {
margin-right: 8px;
border-radius: 4px;
width: 32px;
height: 32px;
display: block;
overflow: hidden;
2022-06-08 10:39:08 -04:00
text-indent: 100%;
white-space: nowrap;
2016-08-24 10:55:13 -04:00
}
}
.thumbnail-title {
float: left;
max-width: 164px;
text-align: left;
2016-08-24 10:55:13 -04:00
.thumbnail-creator a {
color: $type-gray;
}
}
}
&.project {
height: $project-height;
.thumbnail-image {
height: 152px;
2016-08-08 08:38:32 -04:00
img {
margin: 0 auto;
border: 0;
border-radius: 4px;
width: $thumbnail-inner-width;
height: 152px;
2016-08-08 08:38:32 -04:00
}
}
}
2016-08-08 08:38:32 -04:00
&.gallery {
height: $gallery-height;
.thumbnail-image {
height: 120px;
2016-08-08 08:38:32 -04:00
img {
border: 0;
border-radius: 4px;
width: $thumbnail-inner-width;
height: 120px;
2016-08-08 08:38:32 -04:00
}
}
.thumbnail-info {
.thumbnail-title {
max-width: 204px;
}
}
}
}
&.column {
flex-direction: column;
justify-content: center;
}
//4 columns
@media #{$small} {
.flex-row {
width: $cols4;
}
}
//6 columns
@media #{$medium} {
.flex-row {
width: $cols6;
}
}
// 8 columns
@media #{$intermediate} {
.flex-row {
width: $cols9;
}
}
}