archetype 0.0.1.pre.12 → 0.0.1.pre.13

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (79) hide show
  1. checksums.yaml +4 -4
  2. data/lib/archetype.rb +4 -0
  3. data/lib/archetype/actions/help.rb +16 -0
  4. data/lib/archetype/actions/theme.rb +73 -0
  5. data/lib/archetype/executor.rb +27 -0
  6. data/lib/archetype/functions/hash.rb +28 -12
  7. data/lib/archetype/functions/helpers.rb +46 -13
  8. data/lib/archetype/functions/styleguide_memoizer.rb +10 -2
  9. data/lib/archetype/sass_extensions/functions/lists.rb +36 -42
  10. data/lib/archetype/sass_extensions/functions/locale.rb +32 -16
  11. data/lib/archetype/sass_extensions/functions/styleguide.rb +127 -38
  12. data/lib/archetype/sass_extensions/functions/ui.rb +3 -2
  13. data/lib/archetype/sass_extensions/functions/version.rb +11 -6
  14. data/lib/archetype/sass_extensions/monkey_patches.rb +1 -1
  15. data/lib/archetype/version.rb +2 -2
  16. data/stylesheets/archetype/_base.scss +7 -2
  17. data/stylesheets/archetype/_config.scss +8 -1
  18. data/stylesheets/archetype/_hacks.scss +51 -17
  19. data/stylesheets/archetype/_ui.scss +16 -5
  20. data/stylesheets/archetype/base/_h5bp.scss +12 -12
  21. data/stylesheets/archetype/base/_normalize.scss +178 -139
  22. data/stylesheets/archetype/grid/_grid.scss +13 -13
  23. data/stylesheets/archetype/styleguide/components/_buttons.scss +1 -0
  24. data/stylesheets/archetype/util/_debug.scss +4 -4
  25. data/stylesheets/archetype/util/_lists.scss +1 -1
  26. data/stylesheets/archetype/util/_misc.scss +1 -1
  27. data/stylesheets/archetype/util/_rtl.scss +1 -1
  28. data/stylesheets/archetype/util/_spacing.scss +6 -6
  29. data/stylesheets/archetype/util/_styles.scss +21 -10
  30. data/stylesheets/archetype/util/_targeting.scss +1 -1
  31. data/test/fixtures/stylesheets/archetype/assets/images/vendor/archetype/animations/loaders-s7889ccc8c1.png +0 -0
  32. data/test/fixtures/stylesheets/archetype/config.rb +2 -0
  33. data/test/fixtures/stylesheets/archetype/source/base.scss +3 -0
  34. data/test/fixtures/stylesheets/archetype/source/hacks/transparent_focusable.scss +5 -0
  35. data/test/fixtures/stylesheets/archetype/source/locale.scss +43 -0
  36. data/test/fixtures/stylesheets/archetype/source/styleguide/alerts.scss +21 -0
  37. data/test/fixtures/stylesheets/archetype/source/styleguide/buttons.scss +5 -1
  38. data/test/fixtures/stylesheets/archetype/source/styleguide/drop.scss +101 -0
  39. data/test/fixtures/stylesheets/archetype/source/styleguide/extend.scss +24 -0
  40. data/test/fixtures/stylesheets/archetype/source/styleguide/invalid_structures.scss +85 -0
  41. data/test/fixtures/stylesheets/archetype/source/styleguide/multi_value.scss +18 -0
  42. data/test/fixtures/stylesheets/archetype/source/styleguide/nested_styleguides.scss +1 -1
  43. data/test/fixtures/stylesheets/archetype/source/styleguide/selective_state.scss +1 -1
  44. data/test/fixtures/stylesheets/archetype/source/ui/glyph_icon.scss +30 -0
  45. data/test/fixtures/stylesheets/archetype/source/utilities/associative.scss +24 -0
  46. data/test/fixtures/stylesheets/archetype/source/utilities/custom_output_styler.scss +4 -3
  47. data/test/fixtures/stylesheets/archetype/source/utilities/targeting/target-browser.scss +8 -1
  48. data/test/fixtures/stylesheets/archetype/tmp/b.css +14 -0
  49. data/test/fixtures/stylesheets/archetype/tmp/base.css +349 -0
  50. data/test/fixtures/stylesheets/archetype/tmp/hacks/ie_pseudo.css +11 -0
  51. data/test/fixtures/stylesheets/archetype/tmp/hacks/transparent_focusable.css +4 -0
  52. data/test/fixtures/stylesheets/archetype/tmp/locale.css +23 -0
  53. data/test/fixtures/stylesheets/archetype/tmp/styleguide/alerts.css +711 -0
  54. data/test/fixtures/stylesheets/archetype/tmp/styleguide/buttons.css +2119 -0
  55. data/test/fixtures/stylesheets/archetype/tmp/styleguide/drop.css +63 -0
  56. data/test/fixtures/stylesheets/archetype/tmp/styleguide/extend.css +11 -0
  57. data/test/fixtures/stylesheets/archetype/tmp/styleguide/fallback_styles.css +10 -0
  58. data/test/fixtures/stylesheets/archetype/tmp/styleguide/invalid_structures.css +21 -0
  59. data/test/fixtures/stylesheets/archetype/tmp/styleguide/multi_value.css +13 -0
  60. data/test/fixtures/stylesheets/archetype/tmp/styleguide/nested_styleguides.css +28 -0
  61. data/test/fixtures/stylesheets/archetype/tmp/styleguide/selective_state.css +177 -0
  62. data/test/fixtures/stylesheets/archetype/tmp/ui/glyph_icon.css +127 -0
  63. data/test/fixtures/stylesheets/archetype/tmp/ui/hide_element.css +8 -0
  64. data/test/fixtures/stylesheets/archetype/tmp/ui/stroke.css +17 -0
  65. data/test/fixtures/stylesheets/archetype/tmp/ui/triangle.css +35 -0
  66. data/test/fixtures/stylesheets/archetype/tmp/utilities/associative.css +9 -0
  67. data/test/fixtures/stylesheets/archetype/tmp/utilities/custom_output_styler.css +8 -0
  68. data/test/fixtures/stylesheets/archetype/tmp/utilities/if-set.css +9 -0
  69. data/test/fixtures/stylesheets/archetype/tmp/utilities/spacing/horizontal-spacing.css +29 -0
  70. data/test/fixtures/stylesheets/archetype/tmp/utilities/spacing/vertical-spacing.css +29 -0
  71. data/test/fixtures/stylesheets/archetype/tmp/utilities/styles/filter.css +11 -0
  72. data/test/fixtures/stylesheets/archetype/tmp/utilities/styles/font-family.css +16 -0
  73. data/test/fixtures/stylesheets/archetype/tmp/utilities/styles/z-index.css +15 -0
  74. data/test/fixtures/stylesheets/archetype/tmp/utilities/targeting/target-browser.css +105 -0
  75. data/test/fixtures/stylesheets/archetype/tmp/utilities/targeting/target-os.css +55 -0
  76. data/test/helpers/test_case.rb +2 -2
  77. data/test/integrations/archetype_test.rb +3 -1
  78. data/test/units/sass_extensions_test.rb +18 -25
  79. metadata +81 -3
@@ -0,0 +1,24 @@
1
+ @import "archetype";
2
+
3
+ .some-extend-class {
4
+ color: red;
5
+ }
6
+
7
+ %some-extend-placeholder {
8
+ background: green;
9
+ }
10
+
11
+ @if not styleguide-component-exists(extend-styleguide-test, $CONFIG_THEME) {
12
+ $a-blackhole: styleguide-add-component(extend-styleguide-test, (), (
13
+ (default, (
14
+ extend '.some-extend-class',
15
+ extend '%some-extend-placeholder',
16
+ content $CONTENT_PLACEHOLDER
17
+ )),
18
+ nil
19
+ ), $CONFIG_THEME);
20
+ }
21
+
22
+ .extend-styleguide-test {
23
+ @include styleguide(extend-styleguide-test);
24
+ }
@@ -0,0 +1,85 @@
1
+ @import "archetype";
2
+
3
+ // this should throw a warning because we can't retrieve the key-value pairs for the top level
4
+ @if not styleguide-component-exists(test-missing-nil, $CONFIG_THEME) {
5
+ $a-blackhole: styleguide-add-component(test-missing-nil, (), (
6
+ (default, (
7
+ color red,
8
+ nil
9
+ ))
10
+ // missing nil
11
+ ), $CONFIG_THEME);
12
+ }
13
+
14
+ // this should still throw a warning because we can't retrieve the key-value pairs for the properties
15
+ @if not styleguide-component-exists(test-missing-nil-2, $CONFIG_THEME) {
16
+ $a-blackhole: styleguide-add-component(test-missing-nil-2, (), (
17
+ (default, (
18
+ color yellow
19
+ // missing nil
20
+ )),
21
+ nil
22
+ ), $CONFIG_THEME);
23
+ }
24
+
25
+ // this should still throw a warning because we can't retrieve the key-value pairs for the properties
26
+ @if not styleguide-component-exists(test-missing-comma, $CONFIG_THEME) {
27
+ $a-blackhole: styleguide-add-component(test-missing-nil-3, (), (
28
+ (default, (
29
+ color blue,
30
+ (states, (
31
+ (hover, (
32
+ color black,
33
+ background green,
34
+ font-weight bold
35
+ ))
36
+ ))
37
+ )),
38
+ nil
39
+ ), $CONFIG_THEME);
40
+ }
41
+
42
+ // this should throw a warning because we probably forgot a comma somewhere
43
+ @if not styleguide-component-exists(test-missing-comma, $CONFIG_THEME) {
44
+ $a-blackhole: styleguide-add-component(test-missing-comma, (), (
45
+ (default, (
46
+ color white,
47
+ background green // missing comma
48
+ (states, (
49
+ (hover, (
50
+ color black,
51
+ background green,
52
+ font-weight bold
53
+ )),
54
+ nil
55
+ ))
56
+ )),
57
+ nil
58
+ ), $CONFIG_THEME);
59
+ }
60
+
61
+ // this should throw a warning because we used an empty value for a property
62
+ @if not styleguide-component-exists(test-empty-value, $CONFIG_THEME) {
63
+ $a-blackhole: styleguide-add-component(test-empty-value, (), (
64
+ (default, (
65
+ color // this is ambiguous, but shouldn't cause an error
66
+ )),
67
+ nil
68
+ ), $CONFIG_THEME);
69
+ }
70
+
71
+ .test-missing-nil {
72
+ @include styleguide(test-missing-nil);
73
+ }
74
+ .test-missing-nil-2 {
75
+ @include styleguide(test-missing-nil-2);
76
+ }
77
+ .test-missing-nil-3 {
78
+ @include styleguide(test-missing-nil-3);
79
+ }
80
+ .test-missing-comma {
81
+ @include styleguide(test-missing-comma);
82
+ }
83
+ .test-empty-value {
84
+ @include styleguide(test-empty-value);
85
+ }
@@ -0,0 +1,18 @@
1
+ @import "archetype";
2
+
3
+ @if not styleguide-component-exists(multi-value-styleguide-test, $CONFIG_THEME) {
4
+ $a-blackhole: styleguide-add-component(multi-value-styleguide-test, (), (
5
+ (default, (
6
+ color gray,
7
+ color rgba(0,0,0, 0.7),
8
+ background white,
9
+ background transparent,
10
+ target-browser (ie lte 7, color, blue),
11
+ target-browser (ie 8, color, red),
12
+ target-browser (firefox, color, pink)
13
+ ))
14
+ ), $CONFIG_THEME);
15
+ }
16
+ .multi-value-styleguide-test {
17
+ @include styleguide(multi-value-styleguide-test);
18
+ }
@@ -3,7 +3,7 @@
3
3
  // - nested selectors
4
4
  // - nested `styleguide` calls in nested selectors
5
5
 
6
- @import "archetype";
6
+ @import "archetype";
7
7
 
8
8
  @if not styleguide-component-exists(nested-styleguide-test, $CONFIG_THEME) {
9
9
  $a-blackhole: styleguide-add-component(nested-styleguide-test, (), (
@@ -1,4 +1,4 @@
1
- @import "archetype";
1
+ @import "archetype";
2
2
 
3
3
  .simple-button {
4
4
  &.disabled {
@@ -1,5 +1,35 @@
1
1
  @import "archetype";
2
2
 
3
+ @include base-glyph();
4
+
3
5
  .simple {
4
6
  @include glyph-icon(caret-down);
5
7
  }
8
+
9
+ .false {
10
+ @include glyph-icon(false, $placement: inline);
11
+ }
12
+
13
+ .size {
14
+ @include glyph-icon(caret-down, $size: 20px);
15
+ }
16
+
17
+ $CONFIG_GENERATED_TAG_INLINE: false;
18
+ .not-inline {
19
+ @include glyph-icon(caret-down);
20
+ }
21
+
22
+ .ie-uid {
23
+ @include glyph-icon(caret-down, $ie-uid: my-custom-id);
24
+ #{$archetype-glyph-selector} {
25
+ color: pink;
26
+ }
27
+ }
28
+
29
+ .content-block {
30
+ @include glyph-icon(caret-down) {
31
+ position: absolute;
32
+ top: 10px;
33
+ left: 10px;
34
+ }
35
+ }
@@ -0,0 +1,24 @@
1
+ @import "archetype";
2
+
3
+ $test: (
4
+ (one, (
5
+ '1',
6
+ '2',
7
+ '3'
8
+ )),
9
+ (two, (
10
+ '4',
11
+ '5',
12
+ '6'
13
+ ))
14
+ );
15
+
16
+ .test {
17
+ a: nth(associative($test, one), 1); // 1
18
+ b: nth(associative($test, one), 2); // 2
19
+ c: nth(associative($test, two), 2); // 5
20
+ d: nth(associative($test, two), 3); // 6
21
+ e: nth(associative($test, 'two'), 2); // 5
22
+ f: nth(associative($test, 'two'), 3); // 6
23
+ g: nth(associative($test, three), 1); // 1
24
+ }
@@ -1,3 +1,5 @@
1
+ @import "archetype";
2
+
1
3
  // define the test function
2
4
  @function has-custom-output-styler($property, $value, $method: pre) {
3
5
  @if $property == color {
@@ -9,13 +11,12 @@
9
11
  }
10
12
  @return false;
11
13
  }
14
+
12
15
  // define the custom styler
13
16
  @mixin custom-output-styler($property, $value, $method: pre) {
14
17
  #{$property}: $value; /* #{$method} override */
15
18
  }
16
19
 
17
- @import "archetype";
18
-
19
20
  .test {
20
21
  @include styleguide(copy);
21
- }
22
+ }
@@ -43,7 +43,7 @@
43
43
 
44
44
  .target-ie-lte-9 {
45
45
  @include target-browser(ie lte 9, border-color, #111);
46
- @include target-browser(ie lte 9, background, #2c2c2b);
46
+ @include target-browser(ie lte 9, background, #2c2c2b);
47
47
  }
48
48
 
49
49
  .target-ie-7-8-9 {
@@ -68,3 +68,10 @@
68
68
  .target-opera {
69
69
  @include target-browser(opera, width, 82%);
70
70
  }
71
+
72
+ .target-with-content-block {
73
+ @include target-browser(ie lte 8) {
74
+ /* testing content block */
75
+ color: red;
76
+ };
77
+ }
@@ -0,0 +1,14 @@
1
+ a {
2
+ font-size: 18px;
3
+ font-weight: bold;
4
+ line-height: 22px;
5
+ color: black;
6
+ }
7
+
8
+ b {
9
+ font-size: 24px;
10
+ font-weight: normal;
11
+ line-height: 26px;
12
+ color: white;
13
+ text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.75);
14
+ }
@@ -0,0 +1,349 @@
1
+ @-webkit-keyframes archetype-loader {
2
+ from {
3
+ -webkit-transform: rotate(0deg);
4
+ }
5
+
6
+ to {
7
+ -webkit-transform: rotate(360deg);
8
+ }
9
+ }
10
+
11
+ @-moz-keyframes archetype-loader {
12
+ from {
13
+ -moz-transform: rotate(0deg);
14
+ }
15
+
16
+ to {
17
+ -moz-transform: rotate(360deg);
18
+ }
19
+ }
20
+
21
+ @-ms-keyframes archetype-loader {
22
+ from {
23
+ -ms-transform: rotate(0deg);
24
+ }
25
+
26
+ to {
27
+ -ms-transform: rotate(360deg);
28
+ }
29
+ }
30
+
31
+ @-o-keyframes archetype-loader {
32
+ from {
33
+ -o-transform: rotate(0deg);
34
+ }
35
+
36
+ to {
37
+ -o-transform: rotate(360deg);
38
+ }
39
+ }
40
+
41
+ @keyframes archetype-loader {
42
+ from {
43
+ transform: rotate(0deg);
44
+ }
45
+
46
+ to {
47
+ transform: rotate(360deg);
48
+ }
49
+ }
50
+
51
+ @-webkit-keyframes archetype-loader-position-medium-1 {
52
+ from, to {
53
+ background-position: 0 -230px;
54
+ width: 58px;
55
+ height: 58px;
56
+ margin-left: -29px;
57
+ margin-top: -29px;
58
+ }
59
+ }
60
+
61
+ @-moz-keyframes archetype-loader-position-medium-1 {
62
+ from, to {
63
+ background-position: 0 -230px;
64
+ width: 58px;
65
+ height: 58px;
66
+ margin-left: -29px;
67
+ margin-top: -29px;
68
+ }
69
+ }
70
+
71
+ @-ms-keyframes archetype-loader-position-medium-1 {
72
+ from, to {
73
+ background-position: 0 -230px;
74
+ width: 58px;
75
+ height: 58px;
76
+ margin-left: -29px;
77
+ margin-top: -29px;
78
+ }
79
+ }
80
+
81
+ @-o-keyframes archetype-loader-position-medium-1 {
82
+ from, to {
83
+ background-position: 0 -230px;
84
+ width: 58px;
85
+ height: 58px;
86
+ margin-left: -29px;
87
+ margin-top: -29px;
88
+ }
89
+ }
90
+
91
+ @keyframes archetype-loader-position-medium-1 {
92
+ from, to {
93
+ background-position: 0 -230px;
94
+ width: 58px;
95
+ height: 58px;
96
+ margin-left: -29px;
97
+ margin-top: -29px;
98
+ }
99
+ }
100
+
101
+ @-webkit-keyframes archetype-loader-position-medium-2 {
102
+ from, to {
103
+ background-position: 0 -288px;
104
+ width: 58px;
105
+ height: 58px;
106
+ margin-left: -29px;
107
+ margin-top: -29px;
108
+ }
109
+ }
110
+
111
+ @-moz-keyframes archetype-loader-position-medium-2 {
112
+ from, to {
113
+ background-position: 0 -288px;
114
+ width: 58px;
115
+ height: 58px;
116
+ margin-left: -29px;
117
+ margin-top: -29px;
118
+ }
119
+ }
120
+
121
+ @-ms-keyframes archetype-loader-position-medium-2 {
122
+ from, to {
123
+ background-position: 0 -288px;
124
+ width: 58px;
125
+ height: 58px;
126
+ margin-left: -29px;
127
+ margin-top: -29px;
128
+ }
129
+ }
130
+
131
+ @-o-keyframes archetype-loader-position-medium-2 {
132
+ from, to {
133
+ background-position: 0 -288px;
134
+ width: 58px;
135
+ height: 58px;
136
+ margin-left: -29px;
137
+ margin-top: -29px;
138
+ }
139
+ }
140
+
141
+ @keyframes archetype-loader-position-medium-2 {
142
+ from, to {
143
+ background-position: 0 -288px;
144
+ width: 58px;
145
+ height: 58px;
146
+ margin-left: -29px;
147
+ margin-top: -29px;
148
+ }
149
+ }
150
+
151
+ @-webkit-keyframes archetype-loader-position-small-1 {
152
+ from, to {
153
+ background-position: 0 -692px;
154
+ width: 16px;
155
+ height: 16px;
156
+ margin-left: -8px;
157
+ margin-top: -8px;
158
+ }
159
+ }
160
+
161
+ @-moz-keyframes archetype-loader-position-small-1 {
162
+ from, to {
163
+ background-position: 0 -692px;
164
+ width: 16px;
165
+ height: 16px;
166
+ margin-left: -8px;
167
+ margin-top: -8px;
168
+ }
169
+ }
170
+
171
+ @-ms-keyframes archetype-loader-position-small-1 {
172
+ from, to {
173
+ background-position: 0 -692px;
174
+ width: 16px;
175
+ height: 16px;
176
+ margin-left: -8px;
177
+ margin-top: -8px;
178
+ }
179
+ }
180
+
181
+ @-o-keyframes archetype-loader-position-small-1 {
182
+ from, to {
183
+ background-position: 0 -692px;
184
+ width: 16px;
185
+ height: 16px;
186
+ margin-left: -8px;
187
+ margin-top: -8px;
188
+ }
189
+ }
190
+
191
+ @keyframes archetype-loader-position-small-1 {
192
+ from, to {
193
+ background-position: 0 -692px;
194
+ width: 16px;
195
+ height: 16px;
196
+ margin-left: -8px;
197
+ margin-top: -8px;
198
+ }
199
+ }
200
+
201
+ @-webkit-keyframes archetype-loader-position-small-2 {
202
+ from, to {
203
+ background-position: 0 -708px;
204
+ width: 16px;
205
+ height: 16px;
206
+ margin-left: -8px;
207
+ margin-top: -8px;
208
+ }
209
+ }
210
+
211
+ @-moz-keyframes archetype-loader-position-small-2 {
212
+ from, to {
213
+ background-position: 0 -708px;
214
+ width: 16px;
215
+ height: 16px;
216
+ margin-left: -8px;
217
+ margin-top: -8px;
218
+ }
219
+ }
220
+
221
+ @-ms-keyframes archetype-loader-position-small-2 {
222
+ from, to {
223
+ background-position: 0 -708px;
224
+ width: 16px;
225
+ height: 16px;
226
+ margin-left: -8px;
227
+ margin-top: -8px;
228
+ }
229
+ }
230
+
231
+ @-o-keyframes archetype-loader-position-small-2 {
232
+ from, to {
233
+ background-position: 0 -708px;
234
+ width: 16px;
235
+ height: 16px;
236
+ margin-left: -8px;
237
+ margin-top: -8px;
238
+ }
239
+ }
240
+
241
+ @keyframes archetype-loader-position-small-2 {
242
+ from, to {
243
+ background-position: 0 -708px;
244
+ width: 16px;
245
+ height: 16px;
246
+ margin-left: -8px;
247
+ margin-top: -8px;
248
+ }
249
+ }
250
+
251
+ @-webkit-keyframes archetype-loader-position-large-1 {
252
+ from, to {
253
+ background-position: 0 -462px;
254
+ width: 115px;
255
+ height: 115px;
256
+ margin-left: -57.5px;
257
+ margin-top: -57.5px;
258
+ }
259
+ }
260
+
261
+ @-moz-keyframes archetype-loader-position-large-1 {
262
+ from, to {
263
+ background-position: 0 -462px;
264
+ width: 115px;
265
+ height: 115px;
266
+ margin-left: -57.5px;
267
+ margin-top: -57.5px;
268
+ }
269
+ }
270
+
271
+ @-ms-keyframes archetype-loader-position-large-1 {
272
+ from, to {
273
+ background-position: 0 -462px;
274
+ width: 115px;
275
+ height: 115px;
276
+ margin-left: -57.5px;
277
+ margin-top: -57.5px;
278
+ }
279
+ }
280
+
281
+ @-o-keyframes archetype-loader-position-large-1 {
282
+ from, to {
283
+ background-position: 0 -462px;
284
+ width: 115px;
285
+ height: 115px;
286
+ margin-left: -57.5px;
287
+ margin-top: -57.5px;
288
+ }
289
+ }
290
+
291
+ @keyframes archetype-loader-position-large-1 {
292
+ from, to {
293
+ background-position: 0 -462px;
294
+ width: 115px;
295
+ height: 115px;
296
+ margin-left: -57.5px;
297
+ margin-top: -57.5px;
298
+ }
299
+ }
300
+
301
+ @-webkit-keyframes archetype-loader-position-large-2 {
302
+ from, to {
303
+ background-position: 0 -577px;
304
+ width: 115px;
305
+ height: 115px;
306
+ margin-left: -57.5px;
307
+ margin-top: -57.5px;
308
+ }
309
+ }
310
+
311
+ @-moz-keyframes archetype-loader-position-large-2 {
312
+ from, to {
313
+ background-position: 0 -577px;
314
+ width: 115px;
315
+ height: 115px;
316
+ margin-left: -57.5px;
317
+ margin-top: -57.5px;
318
+ }
319
+ }
320
+
321
+ @-ms-keyframes archetype-loader-position-large-2 {
322
+ from, to {
323
+ background-position: 0 -577px;
324
+ width: 115px;
325
+ height: 115px;
326
+ margin-left: -57.5px;
327
+ margin-top: -57.5px;
328
+ }
329
+ }
330
+
331
+ @-o-keyframes archetype-loader-position-large-2 {
332
+ from, to {
333
+ background-position: 0 -577px;
334
+ width: 115px;
335
+ height: 115px;
336
+ margin-left: -57.5px;
337
+ margin-top: -57.5px;
338
+ }
339
+ }
340
+
341
+ @keyframes archetype-loader-position-large-2 {
342
+ from, to {
343
+ background-position: 0 -577px;
344
+ width: 115px;
345
+ height: 115px;
346
+ margin-left: -57.5px;
347
+ margin-top: -57.5px;
348
+ }
349
+ }