tachyonscss-rails 4.9.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (69) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.md +33 -0
  3. data/README.md +42 -0
  4. data/Rakefile +43 -0
  5. data/app/assets/stylesheets/scss/_aspect-ratios.scss +142 -0
  6. data/app/assets/stylesheets/scss/_background-position.scss +133 -0
  7. data/app/assets/stylesheets/scss/_background-size.scss +41 -0
  8. data/app/assets/stylesheets/scss/_border-colors.scss +93 -0
  9. data/app/assets/stylesheets/scss/_border-radius.scss +134 -0
  10. data/app/assets/stylesheets/scss/_border-style.scss +55 -0
  11. data/app/assets/stylesheets/scss/_border-widths.scss +81 -0
  12. data/app/assets/stylesheets/scss/_borders.scss +65 -0
  13. data/app/assets/stylesheets/scss/_box-shadow.scss +48 -0
  14. data/app/assets/stylesheets/scss/_box-sizing.scss +49 -0
  15. data/app/assets/stylesheets/scss/_clears.scss +47 -0
  16. data/app/assets/stylesheets/scss/_code.scss +18 -0
  17. data/app/assets/stylesheets/scss/_coordinates.scss +153 -0
  18. data/app/assets/stylesheets/scss/_debug-children.scss +21 -0
  19. data/app/assets/stylesheets/scss/_debug-grid.scss +33 -0
  20. data/app/assets/stylesheets/scss/_debug.scss +127 -0
  21. data/app/assets/stylesheets/scss/_debug_children.scss +18 -0
  22. data/app/assets/stylesheets/scss/_display.scss +111 -0
  23. data/app/assets/stylesheets/scss/_flexbox.scss +257 -0
  24. data/app/assets/stylesheets/scss/_floats.scss +56 -0
  25. data/app/assets/stylesheets/scss/_font-family.scss +99 -0
  26. data/app/assets/stylesheets/scss/_font-style.scss +36 -0
  27. data/app/assets/stylesheets/scss/_font-weight.scss +87 -0
  28. data/app/assets/stylesheets/scss/_forms.scss +23 -0
  29. data/app/assets/stylesheets/scss/_gradients.scss +29 -0
  30. data/app/assets/stylesheets/scss/_heights.scss +131 -0
  31. data/app/assets/stylesheets/scss/_hovers.scss +166 -0
  32. data/app/assets/stylesheets/scss/_images.scss +18 -0
  33. data/app/assets/stylesheets/scss/_letter-spacing.scss +40 -0
  34. data/app/assets/stylesheets/scss/_line-height.scss +41 -0
  35. data/app/assets/stylesheets/scss/_links.scss +34 -0
  36. data/app/assets/stylesheets/scss/_lists.scss +15 -0
  37. data/app/assets/stylesheets/scss/_max-widths.scss +105 -0
  38. data/app/assets/stylesheets/scss/_module-template.scss +29 -0
  39. data/app/assets/stylesheets/scss/_negative-margins.scss +205 -0
  40. data/app/assets/stylesheets/scss/_nested.scss +63 -0
  41. data/app/assets/stylesheets/scss/_normalize.scss +454 -0
  42. data/app/assets/stylesheets/scss/_opacity.scss +27 -0
  43. data/app/assets/stylesheets/scss/_outlines.scss +39 -0
  44. data/app/assets/stylesheets/scss/_overflow.scss +82 -0
  45. data/app/assets/stylesheets/scss/_position.scss +44 -0
  46. data/app/assets/stylesheets/scss/_rotations.scss +50 -0
  47. data/app/assets/stylesheets/scss/_skins-pseudo.scss +243 -0
  48. data/app/assets/stylesheets/scss/_skins.scss +143 -0
  49. data/app/assets/stylesheets/scss/_spacing.scss +947 -0
  50. data/app/assets/stylesheets/scss/_styles.scss +15 -0
  51. data/app/assets/stylesheets/scss/_tables.scss +42 -0
  52. data/app/assets/stylesheets/scss/_text-align.scss +53 -0
  53. data/app/assets/stylesheets/scss/_text-decoration.scss +42 -0
  54. data/app/assets/stylesheets/scss/_text-transform.scss +53 -0
  55. data/app/assets/stylesheets/scss/_type-scale.scss +102 -0
  56. data/app/assets/stylesheets/scss/_typography.scss +129 -0
  57. data/app/assets/stylesheets/scss/_utilities.scss +57 -0
  58. data/app/assets/stylesheets/scss/_variables.scss +143 -0
  59. data/app/assets/stylesheets/scss/_vertical-align.scss +43 -0
  60. data/app/assets/stylesheets/scss/_visibility.scss +58 -0
  61. data/app/assets/stylesheets/scss/_white-space.scss +41 -0
  62. data/app/assets/stylesheets/scss/_widths.scss +150 -0
  63. data/app/assets/stylesheets/scss/_word-break.scss +43 -0
  64. data/app/assets/stylesheets/scss/_z-index.scss +60 -0
  65. data/app/assets/stylesheets/tachyons.scss +94 -0
  66. data/lib/tachyonscss-rails/engine.rb +11 -0
  67. data/lib/tachyonscss-rails/version.rb +3 -0
  68. data/lib/tachyonscss-rails.rb +5 -0
  69. metadata +113 -0
@@ -0,0 +1,454 @@
1
+
2
+ // Converted Variables
3
+
4
+
5
+ // Custom Media Query Variables
6
+
7
+
8
+ /*! normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css */
9
+
10
+ /* Document
11
+ ========================================================================== */
12
+
13
+ /**
14
+ * 1. Correct the line height in all browsers.
15
+ * 2. Prevent adjustments of font size after orientation changes in
16
+ * IE on Windows Phone and in iOS.
17
+ */
18
+
19
+ html {
20
+ line-height: 1.15; /* 1 */
21
+ -ms-text-size-adjust: 100%; /* 2 */
22
+ -webkit-text-size-adjust: 100%; /* 2 */
23
+ }
24
+
25
+ /* Sections
26
+ ========================================================================== */
27
+
28
+ /**
29
+ * Remove the margin in all browsers (opinionated).
30
+ */
31
+
32
+ body {
33
+ margin: 0;
34
+ }
35
+
36
+ /**
37
+ * Add the correct display in IE 9-.
38
+ */
39
+
40
+ article,
41
+ aside,
42
+ footer,
43
+ header,
44
+ nav,
45
+ section {
46
+ display: block;
47
+ }
48
+
49
+ /**
50
+ * Correct the font size and margin on `h1` elements within `section` and
51
+ * `article` contexts in Chrome, Firefox, and Safari.
52
+ */
53
+
54
+ h1 {
55
+ font-size: 2em;
56
+ margin: 0.67em 0;
57
+ }
58
+
59
+ /* Grouping content
60
+ ========================================================================== */
61
+
62
+ /**
63
+ * Add the correct display in IE 9-.
64
+ * 1. Add the correct display in IE.
65
+ */
66
+
67
+ figcaption,
68
+ figure,
69
+ main { /* 1 */
70
+ display: block;
71
+ }
72
+
73
+ /**
74
+ * Add the correct margin in IE 8.
75
+ */
76
+
77
+ figure {
78
+ margin: 1em 40px;
79
+ }
80
+
81
+ /**
82
+ * 1. Add the correct box sizing in Firefox.
83
+ * 2. Show the overflow in Edge and IE.
84
+ */
85
+
86
+ hr {
87
+ box-sizing: content-box; /* 1 */
88
+ height: 0; /* 1 */
89
+ overflow: visible; /* 2 */
90
+ }
91
+
92
+ /**
93
+ * 1. Correct the inheritance and scaling of font size in all browsers.
94
+ * 2. Correct the odd `em` font sizing in all browsers.
95
+ */
96
+
97
+ pre {
98
+ font-family: monospace, monospace; /* 1 */
99
+ font-size: 1em; /* 2 */
100
+ }
101
+
102
+ /* Text-level semantics
103
+ ========================================================================== */
104
+
105
+ /**
106
+ * 1. Remove the gray background on active links in IE 10.
107
+ * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
108
+ */
109
+
110
+ a {
111
+ background-color: transparent; /* 1 */
112
+ -webkit-text-decoration-skip: objects; /* 2 */
113
+ }
114
+
115
+ /**
116
+ * 1. Remove the bottom border in Chrome 57- and Firefox 39-.
117
+ * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
118
+ */
119
+
120
+ abbr[title] {
121
+ border-bottom: none; /* 1 */
122
+ text-decoration: underline; /* 2 */
123
+ text-decoration: underline dotted; /* 2 */
124
+ }
125
+
126
+ /**
127
+ * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
128
+ */
129
+
130
+ b,
131
+ strong {
132
+ font-weight: inherit;
133
+ }
134
+
135
+ /**
136
+ * Add the correct font weight in Chrome, Edge, and Safari.
137
+ */
138
+
139
+ b,
140
+ strong {
141
+ font-weight: bolder;
142
+ }
143
+
144
+ /**
145
+ * 1. Correct the inheritance and scaling of font size in all browsers.
146
+ * 2. Correct the odd `em` font sizing in all browsers.
147
+ */
148
+
149
+ code,
150
+ kbd,
151
+ samp {
152
+ font-family: monospace, monospace; /* 1 */
153
+ font-size: 1em; /* 2 */
154
+ }
155
+
156
+ /**
157
+ * Add the correct font style in Android 4.3-.
158
+ */
159
+
160
+ dfn {
161
+ font-style: italic;
162
+ }
163
+
164
+ /**
165
+ * Add the correct background and color in IE 9-.
166
+ */
167
+
168
+ mark {
169
+ background-color: #ff0;
170
+ color: #000;
171
+ }
172
+
173
+ /**
174
+ * Add the correct font size in all browsers.
175
+ */
176
+
177
+ small {
178
+ font-size: 80%;
179
+ }
180
+
181
+ /**
182
+ * Prevent `sub` and `sup` elements from affecting the line height in
183
+ * all browsers.
184
+ */
185
+
186
+ sub,
187
+ sup {
188
+ font-size: 75%;
189
+ line-height: 0;
190
+ position: relative;
191
+ vertical-align: baseline;
192
+ }
193
+
194
+ sub {
195
+ bottom: -0.25em;
196
+ }
197
+
198
+ sup {
199
+ top: -0.5em;
200
+ }
201
+
202
+ /* Embedded content
203
+ ========================================================================== */
204
+
205
+ /**
206
+ * Add the correct display in IE 9-.
207
+ */
208
+
209
+ audio,
210
+ video {
211
+ display: inline-block;
212
+ }
213
+
214
+ /**
215
+ * Add the correct display in iOS 4-7.
216
+ */
217
+
218
+ audio:not([controls]) {
219
+ display: none;
220
+ height: 0;
221
+ }
222
+
223
+ /**
224
+ * Remove the border on images inside links in IE 10-.
225
+ */
226
+
227
+ img {
228
+ border-style: none;
229
+ }
230
+
231
+ /**
232
+ * Hide the overflow in IE.
233
+ */
234
+
235
+ svg:not(:root) {
236
+ overflow: hidden;
237
+ }
238
+
239
+ /* Forms
240
+ ========================================================================== */
241
+
242
+ /**
243
+ * 1. Change the font styles in all browsers (opinionated).
244
+ * 2. Remove the margin in Firefox and Safari.
245
+ */
246
+
247
+ button,
248
+ input,
249
+ optgroup,
250
+ select,
251
+ textarea {
252
+ font-family: sans-serif; /* 1 */
253
+ font-size: 100%; /* 1 */
254
+ line-height: 1.15; /* 1 */
255
+ margin: 0; /* 2 */
256
+ }
257
+
258
+ /**
259
+ * Show the overflow in IE.
260
+ * 1. Show the overflow in Edge.
261
+ */
262
+
263
+ button,
264
+ input { /* 1 */
265
+ overflow: visible;
266
+ }
267
+
268
+ /**
269
+ * Remove the inheritance of text transform in Edge, Firefox, and IE.
270
+ * 1. Remove the inheritance of text transform in Firefox.
271
+ */
272
+
273
+ button,
274
+ select { /* 1 */
275
+ text-transform: none;
276
+ }
277
+
278
+ /**
279
+ * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
280
+ * controls in Android 4.
281
+ * 2. Correct the inability to style clickable types in iOS and Safari.
282
+ */
283
+
284
+ button,
285
+ html [type="button"], /* 1 */
286
+ [type="reset"],
287
+ [type="submit"] {
288
+ -webkit-appearance: button; /* 2 */
289
+ }
290
+
291
+ /**
292
+ * Remove the inner border and padding in Firefox.
293
+ */
294
+
295
+ button::-moz-focus-inner,
296
+ [type="button"]::-moz-focus-inner,
297
+ [type="reset"]::-moz-focus-inner,
298
+ [type="submit"]::-moz-focus-inner {
299
+ border-style: none;
300
+ padding: 0;
301
+ }
302
+
303
+ /**
304
+ * Restore the focus styles unset by the previous rule.
305
+ */
306
+
307
+ button:-moz-focusring,
308
+ [type="button"]:-moz-focusring,
309
+ [type="reset"]:-moz-focusring,
310
+ [type="submit"]:-moz-focusring {
311
+ outline: 1px dotted ButtonText;
312
+ }
313
+
314
+ /**
315
+ * Correct the padding in Firefox.
316
+ */
317
+
318
+ fieldset {
319
+ padding: 0.35em 0.75em 0.625em;
320
+ }
321
+
322
+ /**
323
+ * 1. Correct the text wrapping in Edge and IE.
324
+ * 2. Correct the color inheritance from `fieldset` elements in IE.
325
+ * 3. Remove the padding so developers are not caught out when they zero out
326
+ * `fieldset` elements in all browsers.
327
+ */
328
+
329
+ legend {
330
+ box-sizing: border-box; /* 1 */
331
+ color: inherit; /* 2 */
332
+ display: table; /* 1 */
333
+ max-width: 100%; /* 1 */
334
+ padding: 0; /* 3 */
335
+ white-space: normal; /* 1 */
336
+ }
337
+
338
+ /**
339
+ * 1. Add the correct display in IE 9-.
340
+ * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
341
+ */
342
+
343
+ progress {
344
+ display: inline-block; /* 1 */
345
+ vertical-align: baseline; /* 2 */
346
+ }
347
+
348
+ /**
349
+ * Remove the default vertical scrollbar in IE.
350
+ */
351
+
352
+ textarea {
353
+ overflow: auto;
354
+ }
355
+
356
+ /**
357
+ * 1. Add the correct box sizing in IE 10-.
358
+ * 2. Remove the padding in IE 10-.
359
+ */
360
+
361
+ [type="checkbox"],
362
+ [type="radio"] {
363
+ box-sizing: border-box; /* 1 */
364
+ padding: 0; /* 2 */
365
+ }
366
+
367
+ /**
368
+ * Correct the cursor style of increment and decrement buttons in Chrome.
369
+ */
370
+
371
+ [type="number"]::-webkit-inner-spin-button,
372
+ [type="number"]::-webkit-outer-spin-button {
373
+ height: auto;
374
+ }
375
+
376
+ /**
377
+ * 1. Correct the odd appearance in Chrome and Safari.
378
+ * 2. Correct the outline style in Safari.
379
+ */
380
+
381
+ [type="search"] {
382
+ -webkit-appearance: textfield; /* 1 */
383
+ outline-offset: -2px; /* 2 */
384
+ }
385
+
386
+ /**
387
+ * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
388
+ */
389
+
390
+ [type="search"]::-webkit-search-cancel-button,
391
+ [type="search"]::-webkit-search-decoration {
392
+ -webkit-appearance: none;
393
+ }
394
+
395
+ /**
396
+ * 1. Correct the inability to style clickable types in iOS and Safari.
397
+ * 2. Change font properties to `inherit` in Safari.
398
+ */
399
+
400
+ ::-webkit-file-upload-button {
401
+ -webkit-appearance: button; /* 1 */
402
+ font: inherit; /* 2 */
403
+ }
404
+
405
+ /* Interactive
406
+ ========================================================================== */
407
+
408
+ /*
409
+ * Add the correct display in IE 9-.
410
+ * 1. Add the correct display in Edge, IE, and Firefox.
411
+ */
412
+
413
+ details, /* 1 */
414
+ menu {
415
+ display: block;
416
+ }
417
+
418
+ /*
419
+ * Add the correct display in all browsers.
420
+ */
421
+
422
+ summary {
423
+ display: list-item;
424
+ }
425
+
426
+ /* Scripting
427
+ ========================================================================== */
428
+
429
+ /**
430
+ * Add the correct display in IE 9-.
431
+ */
432
+
433
+ canvas {
434
+ display: inline-block;
435
+ }
436
+
437
+ /**
438
+ * Add the correct display in IE.
439
+ */
440
+
441
+ template {
442
+ display: none;
443
+ }
444
+
445
+ /* Hidden
446
+ ========================================================================== */
447
+
448
+ /**
449
+ * Add the correct display in IE 10-.
450
+ */
451
+
452
+ [hidden] {
453
+ display: none;
454
+ }
@@ -0,0 +1,27 @@
1
+
2
+ // Converted Variables
3
+
4
+
5
+ // Custom Media Query Variables
6
+
7
+
8
+ /*
9
+
10
+ OPACITY
11
+ Docs: http://tachyons.io/docs/themes/opacity/
12
+
13
+ */
14
+
15
+ .o-100 { opacity: 1; }
16
+ .o-90 { opacity: .9; }
17
+ .o-80 { opacity: .8; }
18
+ .o-70 { opacity: .7; }
19
+ .o-60 { opacity: .6; }
20
+ .o-50 { opacity: .5; }
21
+ .o-40 { opacity: .4; }
22
+ .o-30 { opacity: .3; }
23
+ .o-20 { opacity: .2; }
24
+ .o-10 { opacity: .1; }
25
+ .o-05 { opacity: .05; }
26
+ .o-025 { opacity: .025; }
27
+ .o-0 { opacity: 0; }
@@ -0,0 +1,39 @@
1
+
2
+ // Converted Variables
3
+
4
+
5
+ // Custom Media Query Variables
6
+
7
+
8
+ /*
9
+
10
+ OUTLINES
11
+
12
+ Media Query Extensions:
13
+ -ns = not-small
14
+ -m = medium
15
+ -l = large
16
+
17
+ */
18
+
19
+ .outline { outline: 1px solid; }
20
+ .outline-transparent { outline: 1px solid transparent; }
21
+ .outline-0 { outline: 0; }
22
+
23
+ @media #{$breakpoint-not-small} {
24
+ .outline-ns { outline: 1px solid; }
25
+ .outline-transparent-ns { outline: 1px solid transparent; }
26
+ .outline-0-ns { outline: 0; }
27
+ }
28
+
29
+ @media #{$breakpoint-medium} {
30
+ .outline-m { outline: 1px solid; }
31
+ .outline-transparent-m { outline: 1px solid transparent; }
32
+ .outline-0-m { outline: 0; }
33
+ }
34
+
35
+ @media #{$breakpoint-large} {
36
+ .outline-l { outline: 1px solid; }
37
+ .outline-transparent-l { outline: 1px solid transparent; }
38
+ .outline-0-l { outline: 0; }
39
+ }
@@ -0,0 +1,82 @@
1
+
2
+ // Converted Variables
3
+
4
+
5
+ // Custom Media Query Variables
6
+
7
+
8
+ /*
9
+
10
+ OVERFLOW
11
+
12
+ Media Query Extensions:
13
+ -ns = not-small
14
+ -m = medium
15
+ -l = large
16
+
17
+ */
18
+
19
+ .overflow-visible { overflow: visible; }
20
+ .overflow-hidden { overflow: hidden; }
21
+ .overflow-scroll { overflow: scroll; }
22
+ .overflow-auto { overflow: auto; }
23
+
24
+ .overflow-x-visible { overflow-x: visible; }
25
+ .overflow-x-hidden { overflow-x: hidden; }
26
+ .overflow-x-scroll { overflow-x: scroll; }
27
+ .overflow-x-auto { overflow-x: auto; }
28
+
29
+ .overflow-y-visible { overflow-y: visible; }
30
+ .overflow-y-hidden { overflow-y: hidden; }
31
+ .overflow-y-scroll { overflow-y: scroll; }
32
+ .overflow-y-auto { overflow-y: auto; }
33
+
34
+ @media #{$breakpoint-not-small} {
35
+ .overflow-visible-ns { overflow: visible; }
36
+ .overflow-hidden-ns { overflow: hidden; }
37
+ .overflow-scroll-ns { overflow: scroll; }
38
+ .overflow-auto-ns { overflow: auto; }
39
+ .overflow-x-visible-ns { overflow-x: visible; }
40
+ .overflow-x-hidden-ns { overflow-x: hidden; }
41
+ .overflow-x-scroll-ns { overflow-x: scroll; }
42
+ .overflow-x-auto-ns { overflow-x: auto; }
43
+
44
+ .overflow-y-visible-ns { overflow-y: visible; }
45
+ .overflow-y-hidden-ns { overflow-y: hidden; }
46
+ .overflow-y-scroll-ns { overflow-y: scroll; }
47
+ .overflow-y-auto-ns { overflow-y: auto; }
48
+ }
49
+
50
+ @media #{$breakpoint-medium} {
51
+ .overflow-visible-m { overflow: visible; }
52
+ .overflow-hidden-m { overflow: hidden; }
53
+ .overflow-scroll-m { overflow: scroll; }
54
+ .overflow-auto-m { overflow: auto; }
55
+
56
+ .overflow-x-visible-m { overflow-x: visible; }
57
+ .overflow-x-hidden-m { overflow-x: hidden; }
58
+ .overflow-x-scroll-m { overflow-x: scroll; }
59
+ .overflow-x-auto-m { overflow-x: auto; }
60
+
61
+ .overflow-y-visible-m { overflow-y: visible; }
62
+ .overflow-y-hidden-m { overflow-y: hidden; }
63
+ .overflow-y-scroll-m { overflow-y: scroll; }
64
+ .overflow-y-auto-m { overflow-y: auto; }
65
+ }
66
+
67
+ @media #{$breakpoint-large} {
68
+ .overflow-visible-l { overflow: visible; }
69
+ .overflow-hidden-l { overflow: hidden; }
70
+ .overflow-scroll-l { overflow: scroll; }
71
+ .overflow-auto-l { overflow: auto; }
72
+
73
+ .overflow-x-visible-l { overflow-x: visible; }
74
+ .overflow-x-hidden-l { overflow-x: hidden; }
75
+ .overflow-x-scroll-l { overflow-x: scroll; }
76
+ .overflow-x-auto-l { overflow-x: auto; }
77
+
78
+ .overflow-y-visible-l { overflow-y: visible; }
79
+ .overflow-y-hidden-l { overflow-y: hidden; }
80
+ .overflow-y-scroll-l { overflow-y: scroll; }
81
+ .overflow-y-auto-l { overflow-y: auto; }
82
+ }
@@ -0,0 +1,44 @@
1
+
2
+ // Converted Variables
3
+
4
+
5
+ // Custom Media Query Variables
6
+
7
+
8
+ /*
9
+
10
+ POSITIONING
11
+ Docs: http://tachyons.io/docs/layout/position/
12
+
13
+ Media Query Extensions:
14
+ -ns = not-small
15
+ -m = medium
16
+ -l = large
17
+
18
+ */
19
+
20
+ .static { position: static; }
21
+ .relative { position: relative; }
22
+ .absolute { position: absolute; }
23
+ .fixed { position: fixed; }
24
+
25
+ @media #{$breakpoint-not-small} {
26
+ .static-ns { position: static; }
27
+ .relative-ns { position: relative; }
28
+ .absolute-ns { position: absolute; }
29
+ .fixed-ns { position: fixed; }
30
+ }
31
+
32
+ @media #{$breakpoint-medium} {
33
+ .static-m { position: static; }
34
+ .relative-m { position: relative; }
35
+ .absolute-m { position: absolute; }
36
+ .fixed-m { position: fixed; }
37
+ }
38
+
39
+ @media #{$breakpoint-large} {
40
+ .static-l { position: static; }
41
+ .relative-l { position: relative; }
42
+ .absolute-l { position: absolute; }
43
+ .fixed-l { position: fixed; }
44
+ }
@@ -0,0 +1,50 @@
1
+
2
+ // Converted Variables
3
+
4
+
5
+ // Custom Media Query Variables
6
+
7
+
8
+ /*
9
+
10
+ ROTATIONS
11
+
12
+ */
13
+
14
+ .rotate-45 { transform: rotate(45deg); }
15
+ .rotate-90 { transform: rotate(90deg); }
16
+ .rotate-135 { transform: rotate(135deg); }
17
+ .rotate-180 { transform: rotate(180deg); }
18
+ .rotate-225 { transform: rotate(225deg); }
19
+ .rotate-270 { transform: rotate(270deg); }
20
+ .rotate-315 { transform: rotate(315deg); }
21
+
22
+ @media #{$breakpoint-not-small}{
23
+ .rotate-45-ns { transform: rotate(45deg); }
24
+ .rotate-90-ns { transform: rotate(90deg); }
25
+ .rotate-135-ns { transform: rotate(135deg); }
26
+ .rotate-180-ns { transform: rotate(180deg); }
27
+ .rotate-225-ns { transform: rotate(225deg); }
28
+ .rotate-270-ns { transform: rotate(270deg); }
29
+ .rotate-315-ns { transform: rotate(315deg); }
30
+ }
31
+
32
+ @media #{$breakpoint-medium}{
33
+ .rotate-45-m { transform: rotate(45deg); }
34
+ .rotate-90-m { transform: rotate(90deg); }
35
+ .rotate-135-m { transform: rotate(135deg); }
36
+ .rotate-180-m { transform: rotate(180deg); }
37
+ .rotate-225-m { transform: rotate(225deg); }
38
+ .rotate-270-m { transform: rotate(270deg); }
39
+ .rotate-315-m { transform: rotate(315deg); }
40
+ }
41
+
42
+ @media #{$breakpoint-large}{
43
+ .rotate-45-l { transform: rotate(45deg); }
44
+ .rotate-90-l { transform: rotate(90deg); }
45
+ .rotate-135-l { transform: rotate(135deg); }
46
+ .rotate-180-l { transform: rotate(180deg); }
47
+ .rotate-225-l { transform: rotate(225deg); }
48
+ .rotate-270-l { transform: rotate(270deg); }
49
+ .rotate-315-l { transform: rotate(315deg); }
50
+ }