saffron 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (135) hide show
  1. data/.gitignore +5 -0
  2. data/.travis.yml +5 -0
  3. data/Gemfile +4 -0
  4. data/Gemfile.lock +43 -0
  5. data/MIT +21 -0
  6. data/README.md +63 -0
  7. data/Rakefile +16 -0
  8. data/app/assets/stylesheets/_variables.scss +18 -0
  9. data/app/assets/stylesheets/entrances/_drop-in.scss +19 -0
  10. data/app/assets/stylesheets/entrances/_fade-in-down.scss +13 -0
  11. data/app/assets/stylesheets/entrances/_fade-in-left.scss +13 -0
  12. data/app/assets/stylesheets/entrances/_fade-in-right.scss +13 -0
  13. data/app/assets/stylesheets/entrances/_fade-in-up.scss +13 -0
  14. data/app/assets/stylesheets/entrances/_fade-in-zoom-big.scss +20 -0
  15. data/app/assets/stylesheets/entrances/_fade-in-zoom.scss +14 -0
  16. data/app/assets/stylesheets/entrances/_fade-in.scss +13 -0
  17. data/app/assets/stylesheets/entrances/_newspaper.scss +14 -0
  18. data/app/assets/stylesheets/entrances/_pop-in.scss +14 -0
  19. data/app/assets/stylesheets/entrances/_rise-in.scss +13 -0
  20. data/app/assets/stylesheets/entrances/_slide-in.scss +35 -0
  21. data/app/assets/stylesheets/entrances/_stretch.scss +33 -0
  22. data/app/assets/stylesheets/entrances/_turn-in.scss +31 -0
  23. data/app/assets/stylesheets/exits/_compress.scss +25 -0
  24. data/app/assets/stylesheets/exits/_drop-out.scss +14 -0
  25. data/app/assets/stylesheets/exits/_explode.scss +14 -0
  26. data/app/assets/stylesheets/exits/_fade-out-down.scss +14 -0
  27. data/app/assets/stylesheets/exits/_fade-out-left.scss +13 -0
  28. data/app/assets/stylesheets/exits/_fade-out-right.scss +13 -0
  29. data/app/assets/stylesheets/exits/_fade-out-up.scss +14 -0
  30. data/app/assets/stylesheets/exits/_fade-out-zoom-big.scss +19 -0
  31. data/app/assets/stylesheets/exits/_fade-out-zoom.scss +14 -0
  32. data/app/assets/stylesheets/exits/_fade-out.scss +13 -0
  33. data/app/assets/stylesheets/exits/_poof.scss +17 -0
  34. data/app/assets/stylesheets/exits/_rise-out.scss +14 -0
  35. data/app/assets/stylesheets/exits/_slide-out.scss +29 -0
  36. data/app/assets/stylesheets/exits/_turn-out.scss +33 -0
  37. data/app/assets/stylesheets/helpers/_animation.scss +3 -0
  38. data/app/assets/stylesheets/helpers/_contains.scss +4 -0
  39. data/app/assets/stylesheets/helpers/_keyframes.scss +25 -0
  40. data/app/assets/stylesheets/helpers/_prefix.scss +39 -0
  41. data/app/assets/stylesheets/helpers/_transform.scss +9 -0
  42. data/app/assets/stylesheets/helpers/_transition.scss +7 -0
  43. data/app/assets/stylesheets/in-place/_around-the-world.scss +12 -0
  44. data/app/assets/stylesheets/in-place/_bounce.scss +24 -0
  45. data/app/assets/stylesheets/in-place/_colors.scss +23 -0
  46. data/app/assets/stylesheets/in-place/_contract.scss +7 -0
  47. data/app/assets/stylesheets/in-place/_cube-flip.scss +55 -0
  48. data/app/assets/stylesheets/in-place/_enlarge.scss +7 -0
  49. data/app/assets/stylesheets/in-place/_expand.scss +6 -0
  50. data/app/assets/stylesheets/in-place/_flip.scss +19 -0
  51. data/app/assets/stylesheets/in-place/_float.scss +17 -0
  52. data/app/assets/stylesheets/in-place/_ping.scss +13 -0
  53. data/app/assets/stylesheets/in-place/_pulsate.scss +14 -0
  54. data/app/assets/stylesheets/in-place/_quiver.scss +42 -0
  55. data/app/assets/stylesheets/in-place/_shake.scss +24 -0
  56. data/app/assets/stylesheets/in-place/_spin.scss +12 -0
  57. data/app/assets/stylesheets/in-place/_square-dance.scss +18 -0
  58. data/app/assets/stylesheets/in-place/_sunrise.scss +12 -0
  59. data/app/assets/stylesheets/in-place/_sway.scss +17 -0
  60. data/app/assets/stylesheets/in-place/_teeter.scss +29 -0
  61. data/app/assets/stylesheets/saffron.scss +62 -0
  62. data/bin/saffron +9 -0
  63. data/features/install.feature +28 -0
  64. data/features/step_definitions/saffron.rb +37 -0
  65. data/features/support/env.rb +1 -0
  66. data/features/update.feature +37 -0
  67. data/features/version.feature +10 -0
  68. data/lib/saffron.rb +13 -0
  69. data/lib/saffron/engine.rb +4 -0
  70. data/lib/saffron/installer.rb +55 -0
  71. data/lib/saffron/version.rb +3 -0
  72. data/saffron.gemspec +31 -0
  73. data/saffron/_variables.scss +18 -0
  74. data/saffron/entrances/_drop-in.scss +19 -0
  75. data/saffron/entrances/_fade-in-down.scss +13 -0
  76. data/saffron/entrances/_fade-in-left.scss +13 -0
  77. data/saffron/entrances/_fade-in-right.scss +13 -0
  78. data/saffron/entrances/_fade-in-up.scss +13 -0
  79. data/saffron/entrances/_fade-in-zoom-big.scss +20 -0
  80. data/saffron/entrances/_fade-in-zoom.scss +14 -0
  81. data/saffron/entrances/_fade-in.scss +13 -0
  82. data/saffron/entrances/_newspaper.scss +14 -0
  83. data/saffron/entrances/_pop-in.scss +14 -0
  84. data/saffron/entrances/_rise-in.scss +13 -0
  85. data/saffron/entrances/_slide-in.scss +35 -0
  86. data/saffron/entrances/_stretch.scss +33 -0
  87. data/saffron/entrances/_turn-in.scss +31 -0
  88. data/saffron/exits/_compress.scss +25 -0
  89. data/saffron/exits/_drop-out.scss +14 -0
  90. data/saffron/exits/_explode.scss +14 -0
  91. data/saffron/exits/_fade-out-down.scss +14 -0
  92. data/saffron/exits/_fade-out-left.scss +13 -0
  93. data/saffron/exits/_fade-out-right.scss +13 -0
  94. data/saffron/exits/_fade-out-up.scss +14 -0
  95. data/saffron/exits/_fade-out-zoom-big.scss +19 -0
  96. data/saffron/exits/_fade-out-zoom.scss +14 -0
  97. data/saffron/exits/_fade-out.scss +13 -0
  98. data/saffron/exits/_poof.scss +17 -0
  99. data/saffron/exits/_rise-out.scss +14 -0
  100. data/saffron/exits/_slide-out.scss +29 -0
  101. data/saffron/exits/_turn-out.scss +33 -0
  102. data/saffron/helpers/_animation.scss +3 -0
  103. data/saffron/helpers/_contains.scss +4 -0
  104. data/saffron/helpers/_keyframes.scss +25 -0
  105. data/saffron/helpers/_prefix.scss +39 -0
  106. data/saffron/helpers/_transform.scss +9 -0
  107. data/saffron/helpers/_transition.scss +7 -0
  108. data/saffron/in-place/_around-the-world.scss +12 -0
  109. data/saffron/in-place/_bounce.scss +24 -0
  110. data/saffron/in-place/_colors.scss +23 -0
  111. data/saffron/in-place/_contract.scss +7 -0
  112. data/saffron/in-place/_cube-flip.scss +55 -0
  113. data/saffron/in-place/_enlarge.scss +7 -0
  114. data/saffron/in-place/_expand.scss +6 -0
  115. data/saffron/in-place/_flip.scss +19 -0
  116. data/saffron/in-place/_float.scss +17 -0
  117. data/saffron/in-place/_ping.scss +13 -0
  118. data/saffron/in-place/_pulsate.scss +14 -0
  119. data/saffron/in-place/_quiver.scss +42 -0
  120. data/saffron/in-place/_shake.scss +24 -0
  121. data/saffron/in-place/_spin.scss +12 -0
  122. data/saffron/in-place/_square-dance.scss +18 -0
  123. data/saffron/in-place/_sunrise.scss +12 -0
  124. data/saffron/in-place/_sway.scss +17 -0
  125. data/saffron/in-place/_teeter.scss +29 -0
  126. data/saffron/saffron.scss +62 -0
  127. data/tasks/.csscomb.json +297 -0
  128. data/tasks/.csslintrc +19 -0
  129. data/tasks/Gruntfile.js +111 -0
  130. data/tasks/compiled/index.html +11 -0
  131. data/tasks/compiled/saffron.css +3049 -0
  132. data/tasks/compiled/test.css +3086 -0
  133. data/tasks/package.json +32 -0
  134. data/tasks/test.scss +13 -0
  135. metadata +278 -0
@@ -0,0 +1,7 @@
1
+ @mixin enlarge($selector: ":hover", $duration: 0.5s, $delay: 0s, $timing: cubic-bezier(1.000, -0.600, 0.595, 0.835)) {
2
+ @include transition(all $duration $delay $timing);
3
+ @include transform(translateY(0) scale(1) translateZ(0));
4
+ &#{$selector} {
5
+ @include transform(translateY($enlarge-contract-jump * -1) scale($enlarge-contract-multiple));
6
+ }
7
+ }
@@ -0,0 +1,6 @@
1
+ @mixin expand($direction, $amount: 1em, $selector: ":hover", $duration: 0.5s, $delay: 0s, $timing: cubic-bezier(0.680, -0.550, 0.275, 1.465)) {
2
+ @include transition(padding-#{$direction} $duration $delay $timing);
3
+ &#{$selector} {
4
+ padding-#{$direction}: $amount;
5
+ }
6
+ }
@@ -0,0 +1,19 @@
1
+ @mixin flip($selector: ".flipped", $duration: 0.5s, $delay: 0s, $fill-mode: both, $count: 1, $timing: ease-in) {
2
+ position: relative;
3
+ @include prefix(transform-style, preserve-3d, webkit spec);
4
+ @include transition(all $duration $delay $timing);
5
+ @include prefix(backface-visibility, hidden, webkit moz spec);
6
+ &#{$selector} {
7
+ @include transform(rotateY(180deg)translateZ(0));
8
+ }
9
+ &::after {
10
+ content: '';
11
+ position: absolute;
12
+ left: 0;
13
+ height: 100%;
14
+ width: 100%;
15
+ @include prefix(backface-visibility, inherit, webkit moz spec);
16
+ @include transform(rotateY(180deg));
17
+ }
18
+ }
19
+
@@ -0,0 +1,17 @@
1
+ @include keyframes(float) {
2
+ 0%, 50%, 100% {
3
+ @include transform(translateY($float-bob-distance * -1) translateZ(0));
4
+ }
5
+ 25% {
6
+ @include transform(translateY($float-bob-distance) rotate($float-bob-angle));
7
+ }
8
+ 75% {
9
+ @include transform(translateY($float-bob-distance) rotate($float-bob-angle * -1));
10
+ }
11
+ }
12
+
13
+ @mixin float($duration: 5s, $delay: 0s, $fill-mode: none, $count: infinite, $timing: ease-in-out) {
14
+ // hack to fix jagged edges
15
+ outline: 1px solid transparent;
16
+ @include animation(float $count $duration $delay $fill-mode $timing);
17
+ }
@@ -0,0 +1,13 @@
1
+ @include keyframes(ping) {
2
+ 0% {
3
+ @include transform(scale(0));
4
+ }
5
+ 100% {
6
+ @include transform(scale(1));
7
+ opacity: 0;
8
+ }
9
+ }
10
+
11
+ @mixin ping($duration: 1.5s, $delay: 0s, $fill-mode: none, $count: infinite, $timing: ease-in-out) {
12
+ @include animation(ping $count $duration $delay $fill-mode $timing);
13
+ }
@@ -0,0 +1,14 @@
1
+ @include keyframes(pulsate) {
2
+ 0%, 100% {
3
+ opacity: 1;
4
+ @include transform(scale(1) translateZ(0));
5
+ }
6
+ 50% {
7
+ opacity: 0.85;
8
+ @include transform(scale($pulsate-scale));
9
+ }
10
+ }
11
+
12
+ @mixin pulsate($duration: 1.5s, $delay: 0s, $fill-mode: none, $count: 3) {
13
+ @include animation(pulsate $count $duration $delay $fill-mode);
14
+ }
@@ -0,0 +1,42 @@
1
+ @include keyframes(quiver) {
2
+ 0%{
3
+ @include transform(translate3d(2px, 1px, 0) rotate(0deg));
4
+ }
5
+ 10% {
6
+ @include transform(translate3d(-1px, 2px, 0) rotate($quiver-angle));
7
+ }
8
+ 20% {
9
+ @include transform(translate3d(-3px, 0) rotate($quiver-angle * -1));
10
+ }
11
+ 30% {
12
+ @include transform(translate3d(0, 2px, 0) rotate(0deg));
13
+ }
14
+ 40% {
15
+ @include transform(translate3d(1px, -1px, 0) rotate($quiver-angle));
16
+ }
17
+ 50% {
18
+ @include transform(translate3d(-1px, 2px, 0) rotate($quiver-angle * -1));
19
+ }
20
+ 60% {
21
+ @include transform(translate3d(-3px, 1px, 0) rotate(0deg));
22
+ }
23
+ 70% {
24
+ @include transform(translate3d(2px, 1px, 0) rotate($quiver-angle));
25
+ }
26
+ 80% {
27
+ @include transform(translate3d(-1px, -1px, 0) rotate($quiver-angle * -1));
28
+ }
29
+ 90% {
30
+ @include transform(translate3d(2px, 2px, 0) rotate(0deg));
31
+ }
32
+ 100% {
33
+ @include transform(translate3d(1px, -2px, 0) rotate($quiver-angle));
34
+ }
35
+
36
+ }
37
+
38
+ @mixin quiver($duration: 0.75s, $delay: 0s, $fill-mode: none, $count: infinite) {
39
+ // hack to fix jagged edges
40
+ outline: 1px solid transparent;
41
+ @include animation(quiver $duration $delay $fill-mode $count);
42
+ }
@@ -0,0 +1,24 @@
1
+ @include keyframes(shake) {
2
+ 0%, 100% {
3
+ @include transform(translateX(0) translateZ(0));
4
+ }
5
+ 15% {
6
+ @include transform(translateX($shake-distance));
7
+ }
8
+ 35% {
9
+ @include transform(translateX($shake-distance * -1));
10
+ }
11
+ 50% {
12
+ @include transform(translateX($shake-distance / 2));
13
+ }
14
+ 65% {
15
+ @include transform(translateX($shake-distance / 2 * -1));
16
+ }
17
+ 85% {
18
+ @include transform(translateX($shake-distance / 3));
19
+ }
20
+ }
21
+
22
+ @mixin shake($duration: 0.5s, $delay: 0s, $fill-mode: none, $count: 1) {
23
+ @include animation(shake $duration $delay $fill-mode $count);
24
+ }
@@ -0,0 +1,12 @@
1
+ @include keyframes(spin) {
2
+ 0% {
3
+ @include transform(rotate(0deg) translateZ(0));
4
+ }
5
+ 100% {
6
+ @include transform(rotate(360deg));
7
+ }
8
+ }
9
+
10
+ @mixin spin($duration: 0.5s, $delay: 0s, $fill-mode: none, $count: 1, $timing: ease-in-out) {
11
+ @include animation(spin $count $duration $delay $fill-mode $timing);
12
+ }
@@ -0,0 +1,18 @@
1
+ @include keyframes(squareDance) {
2
+ 0%, 100% {
3
+ @include transform(translate3d(100%, 0, 0));
4
+ }
5
+ 25% {
6
+ @include transform(translate3d(100%, 100%, 0));
7
+ }
8
+ 50% {
9
+ @include transform(translate3d(0, 100%, 0));
10
+ }
11
+ 75% {
12
+ @include transform(translate3d(0, 0, 0));
13
+ }
14
+ }
15
+
16
+ @mixin squareDance($duration: 3s, $delay: 0s, $fill-mode: none, $count: infinite, $timing: ease-in-out) {
17
+ @include animation(squareDance $count $duration $delay $fill-mode $timing);
18
+ }
@@ -0,0 +1,12 @@
1
+ @include keyframes(sunrise) {
2
+ 0% {
3
+ @include transform(rotate(0deg) translate($sunrise-arch) rotate(0deg));
4
+ }
5
+ 100% {
6
+ @include transform(rotate(180deg) translate($sunrise-arch) rotate(-180deg));
7
+ }
8
+ }
9
+
10
+ @mixin sunrise($duration: 4s, $delay: 0s, $fill-mode: both, $count: 1, $timing: ease-in-out) {
11
+ @include animation(sunrise $count $duration $delay $fill-mode $timing);
12
+ }
@@ -0,0 +1,17 @@
1
+ @include keyframes(sway) {
2
+ 0%, 50%, 100% {
3
+ @include transform(rotate($sway-angle) translateZ(0));
4
+ }
5
+ 25% {
6
+ @include transform(rotate($sway-angle * -1));
7
+ }
8
+ 75% {
9
+ @include transform(rotate($sway-angle * -1));
10
+ }
11
+ }
12
+
13
+ @mixin sway($duration: 6.5s, $delay: 0s, $fill-mode: none, $count: infinite, $timing: ease-in-out) {
14
+ // hack to fix jagged edges
15
+ outline: 1px solid transparent;
16
+ @include animation(sway $count $duration $delay $fill-mode $timing);
17
+ }
@@ -0,0 +1,29 @@
1
+ @include keyframes(teeter) {
2
+ 0%, 100% {
3
+ @include transform(rotate(0deg) translateZ(0));
4
+ }
5
+ 15% {
6
+ @include transform(rotate($teeter-angle));
7
+ }
8
+ 30% {
9
+ @include transform(rotate($teeter-angle * -1));
10
+ }
11
+ 45% {
12
+ @include transform(rotate($teeter-angle / 2));
13
+ }
14
+ 60% {
15
+ @include transform(rotate($teeter-angle / 2 * -1));
16
+ }
17
+ 73% {
18
+ @include transform(rotate($teeter-angle / 3));
19
+ }
20
+ 86% {
21
+ @include transform(rotate($teeter-angle / 3 * -1));
22
+ }
23
+ }
24
+
25
+ @mixin teeter($duration: 1s, $delay: 0s, $fill-mode: none, $count: 1) {
26
+ // hack to fix jagged edges
27
+ outline: 1px solid transparent;
28
+ @include animation(teeter $duration $delay $fill-mode $count);
29
+ }
@@ -0,0 +1,62 @@
1
+ // Variables
2
+ @import "variables";
3
+
4
+ // Helper Mixins and Functions
5
+ @import "helpers/contains";
6
+ @import "helpers/prefix";
7
+ @import "helpers/animation";
8
+ @import "helpers/transition";
9
+ @import "helpers/transform";
10
+ @import "helpers/keyframes";
11
+
12
+ // Entrances
13
+ @import "entrances/fade-in";
14
+ @import "entrances/fade-in-up";
15
+ @import "entrances/fade-in-down";
16
+ @import "entrances/fade-in-left";
17
+ @import "entrances/fade-in-right";
18
+ @import "entrances/fade-in-zoom";
19
+ @import "entrances/fade-in-zoom-big";
20
+ @import "entrances/slide-in";
21
+ @import "entrances/drop-in";
22
+ @import "entrances/rise-in";
23
+ @import "entrances/pop-in";
24
+ @import "entrances/turn-in";
25
+ @import "entrances/stretch";
26
+ @import "entrances/newspaper";
27
+
28
+ // Exits
29
+ @import "exits/fade-out";
30
+ @import "exits/fade-out-down";
31
+ @import "exits/fade-out-up";
32
+ @import "exits/fade-out-left";
33
+ @import "exits/fade-out-right";
34
+ @import "exits/fade-out-zoom";
35
+ @import "exits/fade-out-zoom-big";
36
+ @import "exits/slide-out";
37
+ @import "exits/explode";
38
+ @import "exits/drop-out";
39
+ @import "exits/rise-out";
40
+ @import "exits/poof";
41
+ @import "exits/turn-out";
42
+ @import "exits/compress";
43
+
44
+ // In Place
45
+ @import "in-place/float";
46
+ @import "in-place/shake";
47
+ @import "in-place/expand";
48
+ @import "in-place/teeter";
49
+ @import "in-place/quiver";
50
+ @import "in-place/sway";
51
+ @import "in-place/spin";
52
+ @import "in-place/bounce";
53
+ @import "in-place/pulsate";
54
+ @import "in-place/colors";
55
+ @import "in-place/around-the-world";
56
+ @import "in-place/ping";
57
+ @import "in-place/square-dance";
58
+ @import "in-place/sunrise";
59
+ @import "in-place/enlarge";
60
+ @import "in-place/contract";
61
+ @import "in-place/flip";
62
+ @import "in-place/cube-flip";
@@ -0,0 +1,297 @@
1
+ {
2
+ "always-semicolon": true,
3
+ "block-indent": 2,
4
+ "colon-space": true,
5
+ "color-case": "lower",
6
+ "color-shorthand": true,
7
+ "combinator-space": true,
8
+ "element-case": "lower",
9
+ "eof-newline": true,
10
+ "leading-zero": false,
11
+ "remove-empty-rulesets": true,
12
+ "rule-indent": 2,
13
+ "stick-brace": true,
14
+ "strip-spaces": true,
15
+ "unitless-zero": true,
16
+ "vendor-prefix-align": true,
17
+ "sort-order": [
18
+ [
19
+ "position",
20
+ "top",
21
+ "right",
22
+ "bottom",
23
+ "left",
24
+ "z-index",
25
+ "display",
26
+ "float",
27
+ "width",
28
+ "min-width",
29
+ "max-width",
30
+ "height",
31
+ "min-height",
32
+ "max-height",
33
+ "-webkit-box-sizing",
34
+ "-moz-box-sizing",
35
+ "box-sizing",
36
+ "-webkit-appearance",
37
+ "padding",
38
+ "padding-top",
39
+ "padding-right",
40
+ "padding-bottom",
41
+ "padding-left",
42
+ "margin",
43
+ "margin-top",
44
+ "margin-right",
45
+ "margin-bottom",
46
+ "margin-left",
47
+ "overflow",
48
+ "overflow-x",
49
+ "overflow-y",
50
+ "-webkit-overflow-scrolling",
51
+ "-ms-overflow-x",
52
+ "-ms-overflow-y",
53
+ "-ms-overflow-style",
54
+ "clip",
55
+ "clear",
56
+ "font",
57
+ "font-family",
58
+ "font-size",
59
+ "font-style",
60
+ "font-weight",
61
+ "font-variant",
62
+ "font-size-adjust",
63
+ "font-stretch",
64
+ "font-effect",
65
+ "font-emphasize",
66
+ "font-emphasize-position",
67
+ "font-emphasize-style",
68
+ "font-smooth",
69
+ "-webkit-hyphens",
70
+ "-moz-hyphens",
71
+ "hyphens",
72
+ "line-height",
73
+ "color",
74
+ "text-align",
75
+ "-webkit-text-align-last",
76
+ "-moz-text-align-last",
77
+ "-ms-text-align-last",
78
+ "text-align-last",
79
+ "text-emphasis",
80
+ "text-emphasis-color",
81
+ "text-emphasis-style",
82
+ "text-emphasis-position",
83
+ "text-decoration",
84
+ "text-indent",
85
+ "text-justify",
86
+ "text-outline",
87
+ "-ms-text-overflow",
88
+ "text-overflow",
89
+ "text-overflow-ellipsis",
90
+ "text-overflow-mode",
91
+ "text-shadow",
92
+ "text-transform",
93
+ "text-wrap",
94
+ "-webkit-text-size-adjust",
95
+ "-ms-text-size-adjust",
96
+ "letter-spacing",
97
+ "-ms-word-break",
98
+ "word-break",
99
+ "word-spacing",
100
+ "-ms-word-wrap",
101
+ "word-wrap",
102
+ "-moz-tab-size",
103
+ "-o-tab-size",
104
+ "tab-size",
105
+ "white-space",
106
+ "vertical-align",
107
+ "list-style",
108
+ "list-style-position",
109
+ "list-style-type",
110
+ "list-style-image",
111
+ "pointer-events",
112
+ "cursor",
113
+ "visibility",
114
+ "zoom",
115
+ "flex-direction",
116
+ "flex-order",
117
+ "flex-pack",
118
+ "flex-align",
119
+ "table-layout",
120
+ "empty-cells",
121
+ "caption-side",
122
+ "border-spacing",
123
+ "border-collapse",
124
+ "content",
125
+ "quotes",
126
+ "counter-reset",
127
+ "counter-increment",
128
+ "resize",
129
+ "-webkit-user-select",
130
+ "-moz-user-select",
131
+ "-ms-user-select",
132
+ "-o-user-select",
133
+ "user-select",
134
+ "nav-index",
135
+ "nav-up",
136
+ "nav-right",
137
+ "nav-down",
138
+ "nav-left",
139
+ "background",
140
+ "background-color",
141
+ "background-image",
142
+ "-ms-filter:\\'progid:DXImageTransform.Microsoft.gradient",
143
+ "filter:progid:DXImageTransform.Microsoft.gradient",
144
+ "filter:progid:DXImageTransform.Microsoft.AlphaImageLoader",
145
+ "filter",
146
+ "background-repeat",
147
+ "background-attachment",
148
+ "background-position",
149
+ "background-position-x",
150
+ "background-position-y",
151
+ "-webkit-background-clip",
152
+ "-moz-background-clip",
153
+ "background-clip",
154
+ "background-origin",
155
+ "-webkit-background-size",
156
+ "-moz-background-size",
157
+ "-o-background-size",
158
+ "background-size",
159
+ "border",
160
+ "border-color",
161
+ "border-style",
162
+ "border-width",
163
+ "border-top",
164
+ "border-top-color",
165
+ "border-top-style",
166
+ "border-top-width",
167
+ "border-right",
168
+ "border-right-color",
169
+ "border-right-style",
170
+ "border-right-width",
171
+ "border-bottom",
172
+ "border-bottom-color",
173
+ "border-bottom-style",
174
+ "border-bottom-width",
175
+ "border-left",
176
+ "border-left-color",
177
+ "border-left-style",
178
+ "border-left-width",
179
+ "border-radius",
180
+ "border-top-left-radius",
181
+ "border-top-right-radius",
182
+ "border-bottom-right-radius",
183
+ "border-bottom-left-radius",
184
+ "-webkit-border-image",
185
+ "-moz-border-image",
186
+ "-o-border-image",
187
+ "border-image",
188
+ "-webkit-border-image-source",
189
+ "-moz-border-image-source",
190
+ "-o-border-image-source",
191
+ "border-image-source",
192
+ "-webkit-border-image-slice",
193
+ "-moz-border-image-slice",
194
+ "-o-border-image-slice",
195
+ "border-image-slice",
196
+ "-webkit-border-image-width",
197
+ "-moz-border-image-width",
198
+ "-o-border-image-width",
199
+ "border-image-width",
200
+ "-webkit-border-image-outset",
201
+ "-moz-border-image-outset",
202
+ "-o-border-image-outset",
203
+ "border-image-outset",
204
+ "-webkit-border-image-repeat",
205
+ "-moz-border-image-repeat",
206
+ "-o-border-image-repeat",
207
+ "border-image-repeat",
208
+ "outline",
209
+ "outline-width",
210
+ "outline-style",
211
+ "outline-color",
212
+ "outline-offset",
213
+ "-webkit-box-shadow",
214
+ "-moz-box-shadow",
215
+ "box-shadow",
216
+ "filter:progid:DXImageTransform.Microsoft.Alpha(Opacity",
217
+ "-ms-filter:\\'progid:DXImageTransform.Microsoft.Alpha",
218
+ "opacity",
219
+ "-ms-interpolation-mode",
220
+ "-webkit-transition",
221
+ "-moz-transition",
222
+ "-ms-transition",
223
+ "-o-transition",
224
+ "transition",
225
+ "-webkit-transition-delay",
226
+ "-moz-transition-delay",
227
+ "-ms-transition-delay",
228
+ "-o-transition-delay",
229
+ "transition-delay",
230
+ "-webkit-transition-timing-function",
231
+ "-moz-transition-timing-function",
232
+ "-ms-transition-timing-function",
233
+ "-o-transition-timing-function",
234
+ "transition-timing-function",
235
+ "-webkit-transition-duration",
236
+ "-moz-transition-duration",
237
+ "-ms-transition-duration",
238
+ "-o-transition-duration",
239
+ "transition-duration",
240
+ "-webkit-transition-property",
241
+ "-moz-transition-property",
242
+ "-ms-transition-property",
243
+ "-o-transition-property",
244
+ "transition-property",
245
+ "-webkit-transform",
246
+ "-moz-transform",
247
+ "-ms-transform",
248
+ "-o-transform",
249
+ "transform",
250
+ "-webkit-transform-origin",
251
+ "-moz-transform-origin",
252
+ "-ms-transform-origin",
253
+ "-o-transform-origin",
254
+ "transform-origin",
255
+ "-webkit-animation",
256
+ "-moz-animation",
257
+ "-ms-animation",
258
+ "-o-animation",
259
+ "animation",
260
+ "-webkit-animation-name",
261
+ "-moz-animation-name",
262
+ "-ms-animation-name",
263
+ "-o-animation-name",
264
+ "animation-name",
265
+ "-webkit-animation-duration",
266
+ "-moz-animation-duration",
267
+ "-ms-animation-duration",
268
+ "-o-animation-duration",
269
+ "animation-duration",
270
+ "-webkit-animation-play-state",
271
+ "-moz-animation-play-state",
272
+ "-ms-animation-play-state",
273
+ "-o-animation-play-state",
274
+ "animation-play-state",
275
+ "-webkit-animation-timing-function",
276
+ "-moz-animation-timing-function",
277
+ "-ms-animation-timing-function",
278
+ "-o-animation-timing-function",
279
+ "animation-timing-function",
280
+ "-webkit-animation-delay",
281
+ "-moz-animation-delay",
282
+ "-ms-animation-delay",
283
+ "-o-animation-delay",
284
+ "animation-delay",
285
+ "-webkit-animation-iteration-count",
286
+ "-moz-animation-iteration-count",
287
+ "-ms-animation-iteration-count",
288
+ "-o-animation-iteration-count",
289
+ "animation-iteration-count",
290
+ "-webkit-animation-direction",
291
+ "-moz-animation-direction",
292
+ "-ms-animation-direction",
293
+ "-o-animation-direction",
294
+ "animation-direction"
295
+ ]
296
+ ]
297
+ }