Created
February 25, 2020 17:33
-
-
Save binyamin/a3cdab76d0c48175669986195ce6e193 to your computer and use it in GitHub Desktop.
A Grid System in scss
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.wrapper, .wrapper--center { | |
display: grid; | |
padding-right: 36px; | |
padding-left: 36px; | |
grid-template-columns: repeat(12, 1fr); | |
gap: 36px; | |
@media only screen and (max-width: 960px) and (min-width: 480px) { | |
margin-left: 24px; | |
margin-right: 24px; | |
column-gap: 24px; | |
grid-template-columns: repeat(8, 1fr); | |
} | |
@media only screen and (max-width: 479px) { | |
margin-left: 16px; | |
margin-right: 16px; | |
column-gap: 16px; | |
grid-template-columns: repeat(4, 1fr); | |
} | |
} | |
.wrapper--center { | |
justify-content: center; | |
align-content: center; | |
} | |
.col-all { | |
grid-column: 1 / 13; | |
@media only screen and (max-width: 960px) and (min-width: 480px) { | |
grid-column: 1 / 9; | |
} | |
@media only screen and (max-width: 479px) { | |
grid-column: 1 / 5; | |
} | |
} | |
$i: 1; | |
@while $i <= 12 { | |
.lg-#{$i} { | |
grid-column-end: span $i; | |
} | |
.lg-#{$i}--center { | |
grid-column-start: (((12 - $i) / 2) + 1); | |
grid-column-end: (0 - (((12 - $i) / 2) + 1)); | |
@media only screen and (max-width: 960px) and (min-width: 480px) { | |
grid-column-start: (((8 - $i) / 2) + 1); | |
grid-column-end: (0 - (((8 - $i) / 2) + 1)); | |
} | |
} | |
.offset-#{$i} { | |
grid-column-start: $i + 1; | |
} | |
$i: $i + 1; | |
} | |
$j: 1; | |
@while $j <= 8 { | |
@media only screen and (max-width: 960px) and (min-width: 480px) { | |
.md-#{$j} { | |
grid-column-start: 1; | |
grid-column-end: span $j; | |
} | |
.md-#{$j}--center { | |
grid-column-start: (((8 - $j) / 2) + 1); | |
grid-column-end: (0 - (((8 - $j) / 2) + 1)); | |
} | |
.offset-#{$j}--md { | |
grid-column-start: $j + 1; | |
} | |
} | |
$j: $j + 1; | |
} | |
$k: 1; | |
@while $k <= 4 { | |
@media only screen and (max-width: 479px) { | |
.sm-#{$k} { | |
grid-column-start: 1; | |
grid-column-end: span $k; | |
} | |
.sm-#{$k}--center { | |
grid-column-start: (((4 - $k) / 2) + 1); | |
grid-column-end: (0 - (((4 - $k) / 2) + 1)); | |
} | |
.offset-#{$k}--sm { | |
grid-column-start: $k + 1; | |
} | |
} | |
$k: $k + 1; | |
} | |
@media only screen and (max-width: 479px) { | |
.offset-0--sm { | |
grid-column-start: 1; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment