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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
|
// - - - - - - - - - - - - - - - - - -
// Mixins
// - - - - - - - - - - - - - - - - - -
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Responsive
// Usage: @include mq(tabletp) {}
// iPhone min device width cheat sheet:
//
// iPhone 4 and 4S: 320px
// iPhone 5, 5S, 5C and 5SE: 320px
// iPhone 6, 6S, 7 and 8: 375px
// iPhone 6+, 7+ and 8+: 414px
// iPhone X: 375px
$break-phonem: 320px;
$break-phonel: 480px;
$break-tabletp: 768px;
$break-tabletl: 1024px;
$break-laptop: 1220px;
$break-desktop: 1600px;
@mixin mq($media) {
@if $media == phonem {
@media only screen and (min-width: $break-phonem) { @content; }
}
@else if $media == phonel {
@media only screen and (min-width: $break-phonel) { @content; }
}
@else if $media == tabletp {
@media only screen and (min-width: $break-tabletp) { @content; }
}
@else if $media == tabletl {
@media only screen and (min-width: $break-tabletl) { @content; }
}
@else if $media == laptop {
@media only screen and (min-width: $break-laptop) { @content; }
}
@else if $media == desktop {
@media only screen and (min-width: $break-desktop) { @content; }
}
}
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text-size-adjust
// Controls the text inflation algorithm used on some smartphones and tablets.
// Other browsers will ignore this property.
//
// Usage: @include text-size-adjust(none);
@mixin text-size-adjust($value) {
-webkit-text-size-adjust: $value;
-moz-text-size-adjust: $value; // editorconfig-checker-disable-line
-ms-text-size-adjust: $value;
text-size-adjust: $value;
}
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Transform
// Usage: @include transform(
// rotate(90deg),
// scale(0.5),
// // ... add more transforms if you need
// );
//
@mixin transform($transforms...) {
// combine the passed transforms into a space separated list
$transform-list: join($transforms, null, space);
// print out the transforms
-webkit-transform: $transform-list;
-moz-transform: $transform-list; // editorconfig-checker-disable-line
-ms-transform: $transform-list;
-o-transform: $transform-list; // editorconfig-checker-disable-line
transform: $transform-list;
}
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Transitions
// Usage: @include transition(color .3s ease);
@mixin transition($args...) {
-webkit-transition: $args;
-moz-transition: $args; // editorconfig-checker-disable-line
-ms-transition: $args;
-o-transition: $args; // editorconfig-checker-disable-line
transition: $args;
}
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Appearance
// Used to display an element using platform-native styling based
// on the operating system's theme.
//
// Usage: @include appearance(button);
@mixin appearance($value) {
-webkit-appearance: $value;
-moz-appearance: $value; // editorconfig-checker-disable-line
appearance: $value;
}
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Placeholder
// Style the placeholder text of a form element.
//
// Usage: @include input-placeholder(#ABB7B7, 15%);
@mixin input-placeholder($color, $alpha) {
::-webkit-input-placeholder {
color: lighten($color, $alpha);
}
::-moz-placeholder {
color: lighten($color, $alpha);
}
:-ms-input-placeholder {
color: lighten($color, $alpha);
}
:-moz-placeholder {
color: lighten($color, $alpha);
}
}
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Box Sizing
// Sets how the total width and height of an element is calculated.
//
// Usage: @include box-sizing(border-box);
@mixin box-sizing ($value) {
-webkit-box-sizing: $value;
-moz-box-sizing: $value; // editorconfig-checker-disable-line
box-sizing: $value;
}
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Box Shadow
//
// Usage: @include box-shadow(0 0 2px 1px #e21a23!important);
@mixin box-shadow ($args...) {
-webkit-box-shadow: $args;
-moz-box-shadow: $args; // editorconfig-checker-disable-line
box-shadow: $args;
}
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Border Radius
//
// Usage: @include border-radius(10% 30% 50% 70%);
@mixin border-radius ($args...) {
-webkit-border-radius: $args;
-moz-border-radius: $args; // editorconfig-checker-disable-line
border-radius: $args;
}
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Flex Wrap
// Sets whether flex items are forced onto one line or can wrap onto
// multiple lines.
//
// Usage: @include flex-wrap(wrap);
@mixin flex-wrap ($value) {
-webkit-flex-wrap: $value;
-ms-flex-wrap: $value;
flex-wrap: $value;
}
// - - - - - - - - - - - - - - - - - - - - - - - - - - - Box Decoration Break
// Specifies how an element's fragments should be rendered when broken across
// multiple lines, columns, or pages.
//
// Usage: @include box-decoration-break(clone);
@mixin box-decoration-break ($value) {
-webkit-box-decoration-break: $value;
-ms-box-decoration-break: $value;
box-decoration-break: $value;
}
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Mask
// Usage: @include mask-image(url("/img/external-link.svg"));
@mixin mask-image($value) {
-webkit-mask-image: $value;
mask-image: $value;
}
// Usage: @include mask-size(cover);
@mixin mask-size($value) {
-webkit-mask-size: $value;
mask-size: $value;
}
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Filter
// Applies graphical effects like blur or color shift to an element.
//
// Usage: @include filter(drop-shadow(0 2px 5px rgba(0, 0, 0, .3)));
@mixin filter($value) {
-webkit-filter: $value;
-moz-filter: $value; // editorconfig-checker-disable-line
-o-filter: $value; // editorconfig-checker-disable-line
filter: $value;
}
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - clip-path
// Create a clipping region that sets what part of an element should be shown.
//
// Usage: @include clip-path(
// padding-box,
// circle(50px at 0 100px),
// // ...
// );
@mixin clip-path($clip-list...) {
// combine the passed transforms into a space separated list
$clip-list: join($clip-list, null, space);
-webkit-clip-path: $clip-list;
-moz-clip-path: $clip-list;
-ms-clip-path: $clip-list;
clip-path: $clip-list;
}
|