redframework 0.0.1.01

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 (57) hide show
  1. checksums.yaml +7 -0
  2. data/README.md +4 -0
  3. data/lib/redframework.rb +3 -0
  4. data/stylesheets/_normalize.scss +400 -0
  5. data/stylesheets/_redframework.scss +57 -0
  6. data/stylesheets/redframework/_defaults.scss +119 -0
  7. data/stylesheets/redframework/_variables.scss +69 -0
  8. data/stylesheets/redframework/animate/_animate.scss +28 -0
  9. data/stylesheets/redframework/animate/_easings.scss +37 -0
  10. data/stylesheets/redframework/animate/fades/_in.scss +9 -0
  11. data/stylesheets/redframework/animate/fades/_out.scss +9 -0
  12. data/stylesheets/redframework/animate/scales/_in.scss +19 -0
  13. data/stylesheets/redframework/animate/scales/_out.scss +9 -0
  14. data/stylesheets/redframework/animate/slide-fades/_in.scss +15 -0
  15. data/stylesheets/redframework/animate/slide-fades/_out.scss +15 -0
  16. data/stylesheets/redframework/animate/slides/_in.scss +39 -0
  17. data/stylesheets/redframework/animate/slides/_out.scss +39 -0
  18. data/stylesheets/redframework/base/_alignment.scss +11 -0
  19. data/stylesheets/redframework/base/_animate.scss +6 -0
  20. data/stylesheets/redframework/base/_body.scss +29 -0
  21. data/stylesheets/redframework/base/_code.scss +63 -0
  22. data/stylesheets/redframework/base/_emphasis.scss +18 -0
  23. data/stylesheets/redframework/base/_forms.scss +174 -0
  24. data/stylesheets/redframework/base/_headings.scss +59 -0
  25. data/stylesheets/redframework/base/_images.scss +111 -0
  26. data/stylesheets/redframework/base/_lists.scss +16 -0
  27. data/stylesheets/redframework/base/_main.scss +16 -0
  28. data/stylesheets/redframework/base/_paragraphs.scss +4 -0
  29. data/stylesheets/redframework/base/_quotes.scss +78 -0
  30. data/stylesheets/redframework/base/_section.scss +45 -0
  31. data/stylesheets/redframework/base/_smallprint.scss +13 -0
  32. data/stylesheets/redframework/base/_tables.scss +163 -0
  33. data/stylesheets/redframework/general/_brand.scss +12 -0
  34. data/stylesheets/redframework/general/_clearfix.scss +7 -0
  35. data/stylesheets/redframework/general/_debug.scss +168 -0
  36. data/stylesheets/redframework/general/_helpers.scss +3 -0
  37. data/stylesheets/redframework/general/_mixins.scss +281 -0
  38. data/stylesheets/redframework/general/_reset.scss +80 -0
  39. data/stylesheets/redframework/general/_shared.scss +61 -0
  40. data/stylesheets/redframework/general/_widths.scss +162 -0
  41. data/stylesheets/redframework/objects/_breadcrumb.scss +15 -0
  42. data/stylesheets/redframework/objects/_buttons.scss +94 -0
  43. data/stylesheets/redframework/objects/_circle.scss +37 -0
  44. data/stylesheets/redframework/objects/_flag.scss +38 -0
  45. data/stylesheets/redframework/objects/_island.scss +11 -0
  46. data/stylesheets/redframework/objects/_navigation.scss +62 -0
  47. data/stylesheets/redframework/objects/_product-listing.scss +162 -0
  48. data/stylesheets/redframework/objects/_quantity.scss +30 -0
  49. data/stylesheets/redframework/objects/_search.scss +44 -0
  50. data/stylesheets/redframework/objects/_searchresults.scss +5 -0
  51. data/stylesheets/redframework/objects/_well.scss +16 -0
  52. data/stylesheets/redframework/views/_collectionview.scss +0 -0
  53. data/stylesheets/redframework/views/_tableview.scss +15 -0
  54. data/templates/project/manifest.rb +22 -0
  55. data/templates/project/screen.scss +2 -0
  56. data/templates/project/scss/app.scss +4 -0
  57. metadata +111 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: a2fff195b6993e6b6311944ed657c202b0c0eac3
4
+ data.tar.gz: 283220d198a2fbd32f158cf9d6d327b8e25287ab
5
+ SHA512:
6
+ metadata.gz: 1e65e8fd890359286f1614359be21263306885c958f1f55a50a0c921631614c17810b8d3fe00986f75955ed43142ffb04f2590a831b12676b961d7c95cee004d
7
+ data.tar.gz: df346dfcd87622b2580e0d01d0d409ab2d69e41f9fd7be8d427d1842887d232e84b57da2d446e99c68acbd0a0020615642ce2d0da0fda3cd647a11ea2bdc0de5
data/README.md ADDED
@@ -0,0 +1,4 @@
1
+ Redframework
2
+ ============
3
+
4
+ Woooo
@@ -0,0 +1,3 @@
1
+ require 'compass'
2
+ extension_path = File.expand_path(File.join(File.dirname(__FILE__), ".."))
3
+ Compass::Frameworks.register('redframework', :path => extension_path)
@@ -0,0 +1,400 @@
1
+ /*! normalize.css v2.1.0 | MIT License | git.io/normalize */
2
+
3
+ /* ==========================================================================
4
+ HTML5 display definitions
5
+ ========================================================================== */
6
+
7
+ /*
8
+ * Correct `block` display not defined in IE 8/9.
9
+ */
10
+
11
+ article,
12
+ aside,
13
+ details,
14
+ figcaption,
15
+ figure,
16
+ footer,
17
+ header,
18
+ hgroup,
19
+ main,
20
+ nav,
21
+ section,
22
+ summary {
23
+ display: block;
24
+ }
25
+
26
+ /*
27
+ * Correct `inline-block` display not defined in IE 8/9.
28
+ */
29
+
30
+ audio,
31
+ canvas,
32
+ video {
33
+ display: inline-block;
34
+ }
35
+
36
+ /*
37
+ * Prevent modern browsers from displaying `audio` without controls.
38
+ * Remove excess height in iOS 5 devices.
39
+ */
40
+
41
+ audio:not([controls]) {
42
+ display: none;
43
+ height: 0;
44
+ }
45
+
46
+ /*
47
+ * Address styling not present in IE 8/9.
48
+ */
49
+
50
+ [hidden] {
51
+ display: none;
52
+ }
53
+
54
+ /* ==========================================================================
55
+ Base
56
+ ========================================================================== */
57
+
58
+ /*
59
+ * 1. Set default font family to sans-serif.
60
+ * 2. Prevent iOS text size adjust after orientation change, without disabling
61
+ * user zoom.
62
+ */
63
+
64
+ html {
65
+ font-family: sans-serif; /* 1 */
66
+ -webkit-text-size-adjust: 100%; /* 2 */
67
+ -ms-text-size-adjust: 100%; /* 2 */
68
+ }
69
+
70
+ /*
71
+ * Remove default margin.
72
+ */
73
+
74
+ body {
75
+ margin: 0;
76
+ }
77
+
78
+ /* ==========================================================================
79
+ Links
80
+ ========================================================================== */
81
+
82
+ /*
83
+ * Address `outline` inconsistency between Chrome and other browsers.
84
+ */
85
+
86
+ a:focus {
87
+ outline: thin dotted;
88
+ }
89
+
90
+ /*
91
+ * Improve readability when focused and also mouse hovered in all browsers.
92
+ */
93
+
94
+ a:active,
95
+ a:hover {
96
+ outline: 0;
97
+ }
98
+
99
+ /* ==========================================================================
100
+ Typography
101
+ ========================================================================== */
102
+
103
+ /*
104
+ * Address variable `h1` font-size and margin within `section` and `article`
105
+ * contexts in Firefox 4+, Safari 5, and Chrome.
106
+ */
107
+
108
+ h1 {
109
+ font-size: 2em;
110
+ margin: 0.67em 0;
111
+ }
112
+
113
+ /*
114
+ * Address styling not present in IE 8/9, Safari 5, and Chrome.
115
+ */
116
+
117
+ abbr[title] {
118
+ border-bottom: 1px dotted;
119
+ }
120
+
121
+ /*
122
+ * Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome.
123
+ */
124
+
125
+ b,
126
+ strong {
127
+ font-weight: bold;
128
+ }
129
+
130
+ /*
131
+ * Address styling not present in Safari 5 and Chrome.
132
+ */
133
+
134
+ dfn {
135
+ font-style: italic;
136
+ }
137
+
138
+ /*
139
+ * Address differences between Firefox and other browsers.
140
+ */
141
+
142
+ hr {
143
+ -moz-box-sizing: content-box;
144
+ box-sizing: content-box;
145
+ height: 0;
146
+ }
147
+
148
+ /*
149
+ * Address styling not present in IE 8/9.
150
+ */
151
+
152
+ mark {
153
+ background: #ff0;
154
+ color: #000;
155
+ }
156
+
157
+ /*
158
+ * Correct font family set oddly in Safari 5 and Chrome.
159
+ */
160
+
161
+ code,
162
+ kbd,
163
+ pre,
164
+ samp {
165
+ font-family: monospace, serif;
166
+ font-size: 1em;
167
+ }
168
+
169
+ /*
170
+ * Improve readability of pre-formatted text in all browsers.
171
+ */
172
+
173
+ pre {
174
+ white-space: pre-wrap;
175
+ }
176
+
177
+ /*
178
+ * Set consistent quote types.
179
+ */
180
+
181
+ q {
182
+ quotes: "\201C" "\201D" "\2018" "\2019";
183
+ }
184
+
185
+ /*
186
+ * Address inconsistent and variable font size in all browsers.
187
+ */
188
+
189
+ small {
190
+ font-size: 80%;
191
+ }
192
+
193
+ /*
194
+ * Prevent `sub` and `sup` affecting `line-height` in all browsers.
195
+ */
196
+
197
+ sub,
198
+ sup {
199
+ font-size: 75%;
200
+ line-height: 0;
201
+ position: relative;
202
+ vertical-align: baseline;
203
+ }
204
+
205
+ sup {
206
+ top: -0.5em;
207
+ }
208
+
209
+ sub {
210
+ bottom: -0.25em;
211
+ }
212
+
213
+ /* ==========================================================================
214
+ Embedded content
215
+ ========================================================================== */
216
+
217
+ /*
218
+ * Remove border when inside `a` element in IE 8/9.
219
+ */
220
+
221
+ img {
222
+ border: 0;
223
+ vertical-align:top;
224
+ }
225
+
226
+ /*
227
+ * Correct overflow displayed oddly in IE 9.
228
+ */
229
+
230
+ svg:not(:root) {
231
+ overflow: hidden;
232
+ }
233
+
234
+ /* ==========================================================================
235
+ Figures
236
+ ========================================================================== */
237
+
238
+ /*
239
+ * Address margin not present in IE 8/9 and Safari 5.
240
+ */
241
+
242
+ figure {
243
+ margin: 0;
244
+ }
245
+
246
+ /* ==========================================================================
247
+ Forms
248
+ ========================================================================== */
249
+
250
+ /*
251
+ * Define consistent border, margin, and padding.
252
+ */
253
+
254
+ fieldset {
255
+ border: 1px solid #c0c0c0;
256
+ margin: 0 2px;
257
+ padding: 0.35em 0.625em 0.75em;
258
+ }
259
+
260
+ /*
261
+ * 1. Correct `color` not being inherited in IE 8/9.
262
+ * 2. Remove padding so people aren't caught out if they zero out fieldsets.
263
+ */
264
+
265
+ legend {
266
+ border: 0; /* 1 */
267
+ padding: 0; /* 2 */
268
+ }
269
+
270
+ /*
271
+ * 1. Correct font family not being inherited in all browsers.
272
+ * 2. Correct font size not being inherited in all browsers.
273
+ * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
274
+ */
275
+
276
+ button,
277
+ input,
278
+ select,
279
+ textarea {
280
+ font-family: inherit; /* 1 */
281
+ font-size: 100%; /* 2 */
282
+ margin: 0; /* 3 */
283
+ }
284
+
285
+ /*
286
+ * Address Firefox 4+ setting `line-height` on `input` using `!important` in
287
+ * the UA stylesheet.
288
+ */
289
+
290
+ button,
291
+ input {
292
+ line-height: normal;
293
+ }
294
+
295
+ /*
296
+ * Address inconsistent `text-transform` inheritance for `button` and `select`.
297
+ * All other form control elements do not inherit `text-transform` values.
298
+ * Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+.
299
+ * Correct `select` style inheritance in Firefox 4+ and Opera.
300
+ */
301
+
302
+ button,
303
+ select {
304
+ text-transform: none;
305
+ }
306
+
307
+ /*
308
+ * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
309
+ * and `video` controls.
310
+ * 2. Correct inability to style clickable `input` types in iOS.
311
+ * 3. Improve usability and consistency of cursor style between image-type
312
+ * `input` and others.
313
+ */
314
+
315
+ button,
316
+ html input[type="button"], /* 1 */
317
+ input[type="reset"],
318
+ input[type="submit"] {
319
+ -webkit-appearance: button; /* 2 */
320
+ cursor: pointer; /* 3 */
321
+ }
322
+
323
+ /*
324
+ * Re-set default cursor for disabled elements.
325
+ */
326
+
327
+ button[disabled],
328
+ html input[disabled] {
329
+ cursor: default;
330
+ }
331
+
332
+ /*
333
+ * 1. Address box sizing set to `content-box` in IE 8/9.
334
+ * 2. Remove excess padding in IE 8/9.
335
+ */
336
+
337
+ input[type="checkbox"],
338
+ input[type="radio"] {
339
+ box-sizing: border-box; /* 1 */
340
+ padding: 0; /* 2 */
341
+ }
342
+
343
+ /*
344
+ * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
345
+ * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
346
+ * (include `-moz` to future-proof).
347
+ */
348
+
349
+ input[type="search"] {
350
+ -webkit-appearance: textfield; /* 1 */
351
+ -moz-box-sizing: content-box;
352
+ -webkit-box-sizing: content-box; /* 2 */
353
+ box-sizing: content-box;
354
+ }
355
+
356
+ /*
357
+ * Remove inner padding and search cancel button in Safari 5 and Chrome
358
+ * on OS X.
359
+ */
360
+
361
+ input[type="search"]::-webkit-search-cancel-button,
362
+ input[type="search"]::-webkit-search-decoration {
363
+ -webkit-appearance: none;
364
+ }
365
+
366
+ /*
367
+ * Remove inner padding and border in Firefox 4+.
368
+ */
369
+
370
+ button::-moz-focus-inner,
371
+ input::-moz-focus-inner {
372
+ border: 0;
373
+ padding: 0;
374
+ }
375
+
376
+ /*
377
+ * 1. Remove default vertical scrollbar in IE 8/9.
378
+ * 2. Improve readability and alignment in all browsers.
379
+ */
380
+
381
+ textarea {
382
+ overflow: auto; /* 1 */
383
+ vertical-align: top; /* 2 */
384
+ }
385
+
386
+ i { font-style:normal; }
387
+ em { font-style:italic; }
388
+
389
+ /* ==========================================================================
390
+ Tables
391
+ ========================================================================== */
392
+
393
+ /*
394
+ * Remove most spacing between table cells.
395
+ */
396
+
397
+ table {
398
+ border-collapse: collapse;
399
+ border-spacing: 0;
400
+ }
@@ -0,0 +1,57 @@
1
+ @charset "UTF-8";
2
+
3
+ @import "compass/css3";
4
+ @import "compass/utilities/color/contrast";
5
+ $contrasted-lightness-threshold: 59%;
6
+ $text-shadow-transparency: .3 !default;
7
+
8
+ // This includes all of the foundation global elements that are needed to work with any of the other files.
9
+ @import "normalize";
10
+ @import "redframework/variables";
11
+ @import "redframework/defaults";
12
+
13
+ @import "redframework/general/reset";
14
+ @import "redframework/general/mixins";
15
+ @import "redframework/general/brand";
16
+ @import "redframework/general/helpers";
17
+ @import "redframework/general/clearfix";
18
+ @import "redframework/general/debug";
19
+ @import "redframework/general/shared";
20
+ @import "redframework/general/widths";
21
+
22
+ @import "redframework/base/headings";
23
+ @import "redframework/base/body";
24
+ @import "redframework/base/alignment";
25
+ @import "redframework/base/emphasis";
26
+
27
+ @import "redframework/base/code";
28
+ @import "redframework/base/forms";
29
+ @import "redframework/base/images";
30
+ @import "redframework/base/lists";
31
+ @import "redframework/base/main";
32
+ @import "redframework/base/paragraphs";
33
+ @import "redframework/base/quotes";
34
+ @import "redframework/base/smallprint";
35
+ @import "redframework/base/section";
36
+ @import "redframework/base/tables";
37
+
38
+
39
+ @import "redframework/objects/circle";
40
+ @import "redframework/objects/well";
41
+ @import "redframework/objects/navigation";
42
+ @import "redframework/objects/breadcrumb";
43
+ @import "redframework/objects/island";
44
+ @import "redframework/objects/quantity";
45
+ @import "redframework/objects/flag";
46
+ @import "redframework/objects/buttons";
47
+ @import "redframework/objects/search";
48
+ @import "redframework/objects/searchresults";
49
+ @import "redframework/objects/product-listing";
50
+
51
+ @import "redframework/views/tableview";
52
+ @import "redframework/views/collectionview";
53
+
54
+ @import "redframework/animate/_animate";
55
+
56
+
57
+
@@ -0,0 +1,119 @@
1
+ /*------------------------------------*\
2
+ $FONT-SIZES
3
+ \*------------------------------------*/
4
+ $giga-size: 96px!default;
5
+ $mega-size: 72px!default;
6
+ $kilo-size: 48px!default;
7
+
8
+ $heading--font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
9
+
10
+ $h1--font-size: 36px!default; // .alpha
11
+ $h1--font-weight: normal !default; // .alpha
12
+ $h1--font-family: $heading--font-family !default; // .alpha
13
+
14
+ $h2--font-size: 30px!default; // .alpha
15
+ $h2--font-weight: normal!default; // .alpha
16
+ $h2--font-weight: $heading--font-family !default; // .alpha
17
+
18
+ $h3--font-size: 24px!default; // .alpha
19
+ $h3--font-weight: normal!default; // .alpha
20
+ $h3--font-weight: $heading--font-family !default; // .alpha
21
+
22
+ $h4--font-size: 20px!default; // .alpha
23
+ $h4--font-weight: normal!default; // .alpha
24
+ $h4--font-weight: $heading--font-family !default; // .alpha
25
+
26
+ $h5--font-size: 16px!default; // .alpha
27
+ $h5--font-weight: normal!default; // .alpha
28
+ $h5--font-weight: $heading--font-family !default; // .alpha
29
+
30
+ $h6--font-size: 14px!default; // .alpha
31
+ $h6--font-weight: normal!default; // .alpha
32
+ $h6--font-weight: $heading--font-family!default; // .alpha
33
+
34
+ $milli-size: 12px!default;
35
+ $micro-size: 10px!default;
36
+
37
+
38
+ /*------------------------------------*\
39
+ $Text
40
+ \*------------------------------------*/
41
+
42
+ $text--muted-color: #b1b1b1;
43
+ $text--primary-color: #24c0ca;
44
+ $text--success-color: #24ca6e;
45
+ $text--info-color: #27b6eb;
46
+ $text--warning-color: #eb9a27;
47
+ $text--danger-color: #eb2727;
48
+
49
+ /*------------------------------------*\
50
+ $buttons
51
+ \*------------------------------------*/
52
+ $btn_font-family: Georgia, 'Times New Roman', serif !default;
53
+
54
+ $btn-font-size: 20px;
55
+ $btn-border-radius: 5px;
56
+ $text-shadow-size: 1px 1px 1px;
57
+ $btn-inner-box-shadow: 0px 1px 1px #fff;
58
+ $btn-uppercase: false;
59
+
60
+
61
+ $btn-default-color: #fff !default;
62
+ $btn-default-background-color: $base-ui-color !default;
63
+ $btn-default-border-color: none !default;
64
+ $btn-default-text-shadow-color: none !default;
65
+ $btn-default-color--active: #fff !default;
66
+ $btn-default-background-color--active: #c63d89 !default;
67
+ $btn-default-border-color--active: none !default;
68
+ $btn-default-text-shadow-color--active: none !default;
69
+
70
+ $btn-positive-color: #fff;
71
+ $btn-positive-background-color: #53a357;
72
+ $btn-positive-border-color: #53a357;
73
+ $btn-positive-text-shadow-color: #000;
74
+
75
+ $btn-negative-color: #fff;
76
+ $btn-negative-background-color: #a02222;
77
+ $btn-negative-border-color: #a02222;
78
+ $btn-negative-text-shadow-color: #000;
79
+
80
+ $btn-alt-color: #fff;
81
+ $btn-alt-background-color: #242424;
82
+ $btn-alt-border-color: darken(#242424, 40%);
83
+ $btn-alt-text-shadow-color: #000;
84
+
85
+
86
+
87
+
88
+ /*------------------------------------*\
89
+ $options-selector
90
+ \*------------------------------------*/
91
+ $options-selector__option--border-radius: 300px !default;
92
+ $options-selector__option--border-size: 2px !default;
93
+ $options-selector__option--color: $base-ui-color !default;
94
+ $options-selector__option--font-size: 23px !default;
95
+ $options-selector__option--border-color: $options-selector__option--color !default;
96
+ $options-selector__option--shadow: none !default;
97
+ $options-selector__option--text-shadow: none !default;
98
+
99
+ $options-selector__option--color--selected: #c63d89 !default;
100
+ $options-selector__option--border-color--selected: $options-selector__option--color--selected !default;
101
+
102
+ $options-selector__option--default-size: 100px !default;
103
+ $options-selector__option--xsmall-size: $options-selector__option--default-size / 2.5 !default;
104
+ $options-selector__option--small-size: $options-selector__option--default-size / 2 !default;
105
+ $options-selector__option--large-size: $options-selector__option--default-size * 1.5 !default;
106
+
107
+
108
+
109
+ /*------------------------------------*\
110
+ $quantity
111
+ \*------------------------------------*/
112
+ $quantity__button--color: $base-ui-color !default;
113
+ $quantity__value--border-color: $base-ui-color !default;
114
+ $quantity__value--color: $base-ui-color !default;
115
+
116
+
117
+
118
+
119
+
@@ -0,0 +1,69 @@
1
+ /*------------------------------------*\
2
+ $DEFAULTS
3
+ \*------------------------------------*/
4
+ /**
5
+ * inuit.css’ default variables. Redefine these in your `_vars.scss` file (found
6
+ * in the inuit.css-web-template) to override them.
7
+ */
8
+ $debug-mode: false!default;
9
+ $global-border-box: true!default;
10
+
11
+ $base-font-size: 16px!default;
12
+ $base-line-height: 24px!default;
13
+ $base-font-family: sans-serif !default;
14
+ $base-ui-color: #343434 !default;
15
+
16
+
17
+
18
+
19
+ /*------------------------------------*\
20
+ $RESPONSIVE
21
+ \*------------------------------------*/
22
+ $responsive: true!default;
23
+ $responsive-extra: false!default;
24
+
25
+
26
+ $tab-start: 491px !default;
27
+ $lap-start: 800px !default;
28
+ $desk-start: 900px !default;
29
+ $desk-wide-start: 1600px !default;
30
+
31
+
32
+
33
+
34
+
35
+
36
+
37
+
38
+
39
+ /*------------------------------------*\
40
+ $QUOTES
41
+ \*------------------------------------*/
42
+ $english-quotes: true!default;
43
+
44
+ /** If you want English quotes then please do not edit these; they’re only here because Sass needs them. */
45
+ $open-quote: null;
46
+ $close-quote: null;
47
+
48
+ @if $english-quotes != true{
49
+ $open-quote: \00AB;
50
+ $close-quote: \00BB;
51
+ }
52
+
53
+
54
+
55
+
56
+ /*------------------------------------*\
57
+ $BRAND
58
+ \*------------------------------------*/
59
+ $brand-color: #4a8ec2!default;
60
+ $brand-face: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif !default;
61
+ $brand-round: 4px!default;
62
+
63
+
64
+ /*------------------------------------*\
65
+ $FRAMEWORK
66
+ \*------------------------------------*/
67
+ $base-spacing-unit: $base-line-height!default;
68
+ $half-spacing-unit: $base-spacing-unit / 2!default;
69
+ $line-height-ratio: $base-line-height / $base-font-size;
@@ -0,0 +1,28 @@
1
+ [class*=animate] {
2
+ -webkit-animation-duration: 2s;
3
+ -webkit-animation-fill-mode: forwards;
4
+ }
5
+
6
+ @import "fades/in";
7
+ @import "fades/out";
8
+
9
+ @import "slides/in";
10
+ @import "slides/out";
11
+
12
+ @import "slide-fades/in";
13
+ @import "slide-fades/out";
14
+
15
+ @import "scales/in";
16
+ @import "scales/out";
17
+
18
+
19
+ .animate--slow {
20
+ -webkit-animation-duration: 10s;
21
+ }
22
+ .animate--fast {
23
+ -webkit-animation-duration: .3s;
24
+ }
25
+
26
+
27
+
28
+ @import "easings";