-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_helpers.scss
54 lines (42 loc) · 983 Bytes
/
_helpers.scss
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
// Convert PX to REM
$browser-context: 16; // Default
@function rem($pixels, $context: $browser-context) {
@return #{$pixels/$context}rem;
}
// Margin/Padding helpers
$step : 5;
$from : 0;
$through : ceil( 100 /$step);
$unit : 'px';
@for $i from $from through $through {
$i : $i * $step;
// Margin Top
.mt-#{$i} {margin-top:rem($i)}
// Margin Right
.mr-#{$i} {margin-right:rem($i)}
// Margin Bottom
.mb-#{$i} {margin-bottom:rem($i)}
// Margin Left
.ml-#{$i} {margin-left:rem($i)}
// Margin All
.ma-#{$i} {margin:rem($i)}
// Padding Top
.pt-#{$i} {padding-top:rem($i)}
// Padding Right
.pr-#{$i} {padding-right:rem($i)}
// Padding Bottom
.pb-#{$i} {padding-bottom:rem($i)}
// Padding Left
.pl-#{$i} {padding-left:rem($i)}
// Padding All
.pa-#{$i} {padding:rem($i)}
}
// Reset h* margins to 0
@for $i from 1 through 6 {
h#{$i} {
font-weight: 300;
font-family: "Roboto", sans-serif;
color: #43484d;
margin: 0;
}
}