Created
December 13, 2018 19:29
-
-
Save arindampradhan/3fb51c45f15251122d0320d4c079d720 to your computer and use it in GitHub Desktop.
_helpers.scss
This file contains 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
/** | |
space | |
----- | |
Spacing between elements as multiple of 5 | |
**/ | |
//.font-size-10, .font-size-36 | |
$fontamounts: ( | |
8, | |
9, | |
10, | |
11, | |
12, | |
13, | |
14, | |
16, | |
18, | |
20, | |
24, | |
28, | |
36 | |
); // Adjust this to include the pixel amounts you need. | |
@each $fontsize in $fontamounts { | |
.font-size-#{$fontsize} { | |
font-size: #{$fontsize}px; | |
} | |
} | |
// .padding-0 , .padding-1, .padding-3 ... .padding-50, .margin-0, .margin-1,...., .margin-50 | |
$spaceamounts: ( | |
0, | |
5, | |
10, | |
15, | |
20, | |
25, | |
30, | |
35, | |
40, | |
45, | |
50, | |
60, | |
75, | |
100, | |
125, | |
150, | |
175, | |
200 | |
); // Adjust this to include the pixel amounts you need. | |
@each $space in $spaceamounts { | |
.margin-#{$space} { | |
margin: #{$space}px !important; | |
} | |
.margin-t-#{$space} { | |
margin-top: #{$space}px !important; | |
} | |
.margin-b-#{$space} { | |
margin-bottom: #{$space}px !important; | |
} | |
.padding-#{$space} { | |
padding: #{$space}px !important; | |
} | |
.padding-x-#{$space} { | |
padding-right: #{$space}px !important; | |
padding-left: #{$space}px !important; | |
} | |
.padding-y-#{$space} { | |
padding-top: #{$space}px !important; | |
padding-bottom: #{$space}px !important; | |
} | |
.padding-t-#{$space} { | |
padding-top: #{$space}px !important; | |
} | |
.padding-b-#{$space} { | |
padding-bottom: #{$space}px !important; | |
} | |
.padding-l-#{$space} { | |
padding-left: #{$space}px !important; | |
} | |
.padding-r-#{$space} { | |
padding-right: #{$space}px !important; | |
} | |
.gap-#{$space} { | |
height: #{$space}px !important; | |
clear: both; | |
} | |
} | |
$radiusamounts: (0, 2, 4, 8, 16); // Adjust this to include the pixel amounts you need. | |
@each $radius in $radiusamounts { | |
.r-#{$radius} { | |
border-radius: #{$radius}px !important; | |
} | |
} | |
.pointer { | |
cursor: pointer; | |
} | |
.display-contents { | |
display: contents !important; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment