mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2024-11-23 15:47:53 -05:00
parent
55765551ae
commit
2193914650
2 changed files with 55 additions and 40 deletions
|
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue