comixins 0.1.1 → 0.1.2

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 (121) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +8 -0
  3. data/.rubocop.yml +26 -0
  4. data/Gemfile +2 -0
  5. data/README.md +35 -0
  6. data/comixins.gemspec +20 -0
  7. data/lib/comixins/version.rb +1 -1
  8. data/vendor/assets/stylesheets/LICENSE.markdown +29 -0
  9. data/vendor/assets/stylesheets/LICENSE_backup.md +29 -0
  10. data/vendor/assets/stylesheets/_animate.scss +3 -0
  11. data/vendor/assets/stylesheets/_compass.scss +4 -0
  12. data/vendor/assets/stylesheets/_lemonade.scss +38 -0
  13. data/vendor/assets/stylesheets/animation/_animate.scss +31 -0
  14. data/vendor/assets/stylesheets/animation/_core.scss +127 -0
  15. data/vendor/assets/stylesheets/animation/_shared.scss +22 -0
  16. data/vendor/assets/stylesheets/animation/animate/_attention-seekers.scss +152 -0
  17. data/vendor/assets/stylesheets/animation/animate/_bouncing.scss +3 -0
  18. data/vendor/assets/stylesheets/animation/animate/_classes.scss +21 -0
  19. data/vendor/assets/stylesheets/animation/animate/_fading.scss +3 -0
  20. data/vendor/assets/stylesheets/animation/animate/_flippers.scss +87 -0
  21. data/vendor/assets/stylesheets/animation/animate/_lightspeed.scss +24 -0
  22. data/vendor/assets/stylesheets/animation/animate/_rotating.scss +3 -0
  23. data/vendor/assets/stylesheets/animation/animate/_specials.scss +42 -0
  24. data/vendor/assets/stylesheets/animation/animate/bouncing/_bouncing-entrances.scss +68 -0
  25. data/vendor/assets/stylesheets/animation/animate/bouncing/_bouncing-exits.scss +60 -0
  26. data/vendor/assets/stylesheets/animation/animate/fading/_fading-entrances.scss +86 -0
  27. data/vendor/assets/stylesheets/animation/animate/fading/_fading-exits.scss +86 -0
  28. data/vendor/assets/stylesheets/animation/animate/rotating/_rotating-entrances.scss +58 -0
  29. data/vendor/assets/stylesheets/animation/animate/rotating/_rotating-exits.scss +58 -0
  30. data/vendor/assets/stylesheets/comixins.scss +1 -0
  31. data/vendor/assets/stylesheets/compass/_css3.scss +22 -0
  32. data/vendor/assets/stylesheets/compass/_functions.scss +6 -0
  33. data/vendor/assets/stylesheets/compass/_layout.scss +3 -0
  34. data/vendor/assets/stylesheets/compass/_reset-legacy.scss +3 -0
  35. data/vendor/assets/stylesheets/compass/_reset.scss +3 -0
  36. data/vendor/assets/stylesheets/compass/_support.scss +40 -0
  37. data/vendor/assets/stylesheets/compass/_typography.scss +4 -0
  38. data/vendor/assets/stylesheets/compass/_utilities.scss +9 -0
  39. data/vendor/assets/stylesheets/compass/css3/_animation.scss +2 -0
  40. data/vendor/assets/stylesheets/compass/css3/_appearance.scss +16 -0
  41. data/vendor/assets/stylesheets/compass/css3/_background-clip.scss +43 -0
  42. data/vendor/assets/stylesheets/compass/css3/_background-origin.scss +42 -0
  43. data/vendor/assets/stylesheets/compass/css3/_background-size.scss +26 -0
  44. data/vendor/assets/stylesheets/compass/css3/_border-radius.scss +130 -0
  45. data/vendor/assets/stylesheets/compass/css3/_box-shadow.scss +76 -0
  46. data/vendor/assets/stylesheets/compass/css3/_box-sizing.scss +13 -0
  47. data/vendor/assets/stylesheets/compass/css3/_box.scss +111 -0
  48. data/vendor/assets/stylesheets/compass/css3/_columns.scss +148 -0
  49. data/vendor/assets/stylesheets/compass/css3/_filter.scss +23 -0
  50. data/vendor/assets/stylesheets/compass/css3/_flexbox.scss +86 -0
  51. data/vendor/assets/stylesheets/compass/css3/_font-face.scss +48 -0
  52. data/vendor/assets/stylesheets/compass/css3/_hyphenation.scss +77 -0
  53. data/vendor/assets/stylesheets/compass/css3/_images.scss +133 -0
  54. data/vendor/assets/stylesheets/compass/css3/_inline-block.scss +22 -0
  55. data/vendor/assets/stylesheets/compass/css3/_opacity.scss +19 -0
  56. data/vendor/assets/stylesheets/compass/css3/_pie.scss +73 -0
  57. data/vendor/assets/stylesheets/compass/css3/_regions.scss +22 -0
  58. data/vendor/assets/stylesheets/compass/css3/_shared.scss +38 -0
  59. data/vendor/assets/stylesheets/compass/css3/_text-shadow.scss +87 -0
  60. data/vendor/assets/stylesheets/compass/css3/_transform-legacy.scss +87 -0
  61. data/vendor/assets/stylesheets/compass/css3/_transform.scss +598 -0
  62. data/vendor/assets/stylesheets/compass/css3/_transition.scss +221 -0
  63. data/vendor/assets/stylesheets/compass/css3/_user-interface.scss +47 -0
  64. data/vendor/assets/stylesheets/compass/functions/_colors.scss +37 -0
  65. data/vendor/assets/stylesheets/compass/functions/_constants.scss +18 -0
  66. data/vendor/assets/stylesheets/compass/functions/_cross_browser_support.scss +72 -0
  67. data/vendor/assets/stylesheets/compass/functions/_display.scss +36 -0
  68. data/vendor/assets/stylesheets/compass/functions/_gradient_support.scss +15 -0
  69. data/vendor/assets/stylesheets/compass/functions/_lists.scss +90 -0
  70. data/vendor/assets/stylesheets/compass/layout/_grid-background.scss +178 -0
  71. data/vendor/assets/stylesheets/compass/layout/_sticky-footer.scss +23 -0
  72. data/vendor/assets/stylesheets/compass/layout/_stretching.scss +24 -0
  73. data/vendor/assets/stylesheets/compass/reset/_utilities-legacy.scss +135 -0
  74. data/vendor/assets/stylesheets/compass/reset/_utilities.scss +142 -0
  75. data/vendor/assets/stylesheets/compass/typography/_links.scss +3 -0
  76. data/vendor/assets/stylesheets/compass/typography/_lists.scss +4 -0
  77. data/vendor/assets/stylesheets/compass/typography/_text.scss +4 -0
  78. data/vendor/assets/stylesheets/compass/typography/_vertical_rhythm.scss +219 -0
  79. data/vendor/assets/stylesheets/compass/typography/links/_hover-link.scss +5 -0
  80. data/vendor/assets/stylesheets/compass/typography/links/_link-colors.scss +28 -0
  81. data/vendor/assets/stylesheets/compass/typography/links/_unstyled-link.scss +7 -0
  82. data/vendor/assets/stylesheets/compass/typography/lists/_bullets.scss +34 -0
  83. data/vendor/assets/stylesheets/compass/typography/lists/_horizontal-list.scss +61 -0
  84. data/vendor/assets/stylesheets/compass/typography/lists/_inline-block-list.scss +50 -0
  85. data/vendor/assets/stylesheets/compass/typography/lists/_inline-list.scss +44 -0
  86. data/vendor/assets/stylesheets/compass/typography/text/_ellipsis.scss +25 -0
  87. data/vendor/assets/stylesheets/compass/typography/text/_force-wrap.scss +12 -0
  88. data/vendor/assets/stylesheets/compass/typography/text/_nowrap.scss +2 -0
  89. data/vendor/assets/stylesheets/compass/typography/text/_replacement.scss +68 -0
  90. data/vendor/assets/stylesheets/compass/utilities/_color.scss +1 -0
  91. data/vendor/assets/stylesheets/compass/utilities/_general.scss +6 -0
  92. data/vendor/assets/stylesheets/compass/utilities/_links.scss +5 -0
  93. data/vendor/assets/stylesheets/compass/utilities/_lists.scss +6 -0
  94. data/vendor/assets/stylesheets/compass/utilities/_print.scss +17 -0
  95. data/vendor/assets/stylesheets/compass/utilities/_sprites.scss +2 -0
  96. data/vendor/assets/stylesheets/compass/utilities/_tables.scss +3 -0
  97. data/vendor/assets/stylesheets/compass/utilities/_text.scss +5 -0
  98. data/vendor/assets/stylesheets/compass/utilities/color/_contrast.scss +28 -0
  99. data/vendor/assets/stylesheets/compass/utilities/general/_clearfix.scss +44 -0
  100. data/vendor/assets/stylesheets/compass/utilities/general/_float.scss +30 -0
  101. data/vendor/assets/stylesheets/compass/utilities/general/_hacks.scss +46 -0
  102. data/vendor/assets/stylesheets/compass/utilities/general/_min.scss +16 -0
  103. data/vendor/assets/stylesheets/compass/utilities/general/_reset.scss +2 -0
  104. data/vendor/assets/stylesheets/compass/utilities/general/_tabs.scss +1 -0
  105. data/vendor/assets/stylesheets/compass/utilities/general/_tag-cloud.scss +18 -0
  106. data/vendor/assets/stylesheets/compass/utilities/links/_hover-link.scss +3 -0
  107. data/vendor/assets/stylesheets/compass/utilities/links/_link-colors.scss +3 -0
  108. data/vendor/assets/stylesheets/compass/utilities/links/_unstyled-link.scss +3 -0
  109. data/vendor/assets/stylesheets/compass/utilities/lists/_bullets.scss +3 -0
  110. data/vendor/assets/stylesheets/compass/utilities/lists/_horizontal-list.scss +3 -0
  111. data/vendor/assets/stylesheets/compass/utilities/lists/_inline-block-list.scss +3 -0
  112. data/vendor/assets/stylesheets/compass/utilities/lists/_inline-list.scss +3 -0
  113. data/vendor/assets/stylesheets/compass/utilities/sprites/_base.scss +66 -0
  114. data/vendor/assets/stylesheets/compass/utilities/sprites/_sprite-img.scss +79 -0
  115. data/vendor/assets/stylesheets/compass/utilities/tables/_alternating-rows-and-columns.scss +22 -0
  116. data/vendor/assets/stylesheets/compass/utilities/tables/_borders.scss +33 -0
  117. data/vendor/assets/stylesheets/compass/utilities/tables/_scaffolding.scss +9 -0
  118. data/vendor/assets/stylesheets/compass/utilities/text/_ellipsis.scss +3 -0
  119. data/vendor/assets/stylesheets/compass/utilities/text/_nowrap.scss +3 -0
  120. data/vendor/assets/stylesheets/compass/utilities/text/_replacement.scss +3 -0
  121. metadata +119 -1
@@ -0,0 +1,16 @@
1
+ @import "hacks";
2
+
3
+ //**
4
+ // Cross browser min-height mixin.
5
+ @mixin min-height($value) {
6
+ @include hacked-minimum(height, $value); }
7
+
8
+ //**
9
+ // Cross browser min-width mixin.
10
+ @mixin min-width($value) {
11
+ @include hacked-minimum(width, $value); }
12
+
13
+ // @private This mixin is not meant to be used directly.
14
+ @mixin hacked-minimum($property, $value) {
15
+ min-#{$property}: $value;
16
+ @include bang-hack($property, auto, $value); }
@@ -0,0 +1,2 @@
1
+ // This module has moved.
2
+ @import "../../reset/utilities";
@@ -0,0 +1,18 @@
1
+ // Emits styles for a tag cloud
2
+ @mixin tag-cloud($base-size: 1em) {
3
+ font-size: $base-size;
4
+ line-height: 1.2 * $base-size;
5
+ .xxs, .xs, .s, .l, .xl, .xxl {
6
+ line-height: 1.2 * $base-size; }
7
+ .xxs {
8
+ font-size: $base-size / 2; }
9
+ .xs {
10
+ font-size: 2 * $base-size / 3; }
11
+ .s {
12
+ font-size: 3 * $base-size / 4; }
13
+ .l {
14
+ font-size: 4 * $base-size / 3; }
15
+ .xl {
16
+ font-size: 3 * $base-size / 2; }
17
+ .xxl {
18
+ font-size: 2 * $base-size; } }
@@ -0,0 +1,3 @@
1
+ @warn "This import is deprecated. Use 'compass/typography/links/hover-link' instead.";
2
+
3
+ @import "../../typography/links/hover-link";
@@ -0,0 +1,3 @@
1
+ @warn "This import is deprecated. Use 'compass/typography/links/link-colors' instead.";
2
+
3
+ @import "../../typography/links/link-colors";
@@ -0,0 +1,3 @@
1
+ @warn "This import is deprecated. Use 'compass/typography/links/unstyled-link' instead.";
2
+
3
+ @import "../../typography/links/unstyled-link";
@@ -0,0 +1,3 @@
1
+ @warn "This import is deprecated. Use 'compass/typography/lists/bullets' instead.";
2
+
3
+ @import "../../typography/lists/bullets";
@@ -0,0 +1,3 @@
1
+ @warn "This import is deprecated. Use 'compass/typography/lists/horizontal-list' instead.";
2
+
3
+ @import "../../typography/lists/horizontal-list";
@@ -0,0 +1,3 @@
1
+ @warn "This import is deprecated. Use 'compass/typography/lists/inline-block-list' instead.";
2
+
3
+ @import "../../typography/lists/inline-block-list";
@@ -0,0 +1,3 @@
1
+ @warn "This import is deprecated. Use 'compass/typography/lists/inline-list' instead.";
2
+
3
+ @import "../../typography/lists/inline-list";
@@ -0,0 +1,66 @@
1
+ // Determines those states for which you want to enable magic sprite selectors
2
+ $sprite-selectors: hover, target, active !default;
3
+
4
+ // Set the width and height of an element to the original
5
+ // dimensions of an image before it was included in the sprite.
6
+ @mixin sprite-dimensions($map, $sprite) {
7
+ height: image-height(sprite-file($map, $sprite));
8
+ width: image-width(sprite-file($map, $sprite));
9
+ }
10
+
11
+ // Set the background position of the given sprite `$map` to display the
12
+ // sprite of the given `$sprite` name. You can move the image relative to its
13
+ // natural position by passing `$offset-x` and `$offset-y`.
14
+ @mixin sprite-background-position($map, $sprite, $offset-x: 0, $offset-y: 0) {
15
+ background-position: sprite-position($map, $sprite, $offset-x, $offset-y);
16
+ }
17
+
18
+
19
+ // Determines if you want to include magic selectors in your sprites
20
+ $disable-magic-sprite-selectors:false !default;
21
+
22
+ // Include the position and (optionally) dimensions of this `$sprite`
23
+ // in the given sprite `$map`. The sprite url should come from either a base
24
+ // class or you can specify the `sprite-url` explicitly like this:
25
+ //
26
+ // background: $map no-repeat;
27
+ @mixin sprite($map, $sprite, $dimensions: false, $offset-x: 0, $offset-y: 0) {
28
+ @include sprite-background-position($map, $sprite, $offset-x, $offset-y);
29
+ @if $dimensions {
30
+ @include sprite-dimensions($map, $sprite);
31
+ }
32
+ @if not($disable-magic-sprite-selectors) {
33
+ @include sprite-selectors($map, $sprite, $sprite, $offset-x, $offset-y);
34
+ }
35
+ }
36
+
37
+ // Include the selectors for the `$sprite` given the `$map` and the
38
+ // `$full-sprite-name`
39
+ // @private
40
+ @mixin sprite-selectors($map, $sprite-name, $full-sprite-name, $offset-x: 0, $offset-y: 0) {
41
+ @each $selector in $sprite-selectors {
42
+ @if sprite_has_selector($map, $sprite-name, $selector) {
43
+ &:#{$selector}, &.#{$full-sprite-name}_#{$selector}, &.#{$full-sprite-name}-#{$selector} {
44
+ @include sprite-background-position($map, "#{$sprite-name}_#{$selector}", $offset-x, $offset-y);
45
+ }
46
+ }
47
+ }
48
+ }
49
+
50
+ // Generates a class for each space separated name in `$sprite-names`.
51
+ // The class will be of the form .<map-name>-<sprite-name>.
52
+ //
53
+ // If a base class is provided, then each class will extend it.
54
+ //
55
+ // If `$dimensions` is `true`, the sprite dimensions will specified.
56
+ @mixin sprites($map, $sprite-names, $base-class: false, $dimensions: false, $prefix: sprite-map-name($map), $offset-x: 0, $offset-y: 0) {
57
+ @each $sprite-name in $sprite-names {
58
+ @if sprite_does_not_have_parent($map, $sprite-name) {
59
+ $full-sprite-name: "#{$prefix}-#{$sprite-name}";
60
+ .#{$full-sprite-name} {
61
+ @if $base-class { @extend #{$base-class}; }
62
+ @include sprite($map, $sprite-name, $dimensions, $offset-x, $offset-y);
63
+ }
64
+ }
65
+ }
66
+ }
@@ -0,0 +1,79 @@
1
+ // @doc off
2
+ // Example 1:
3
+ //
4
+ // a.twitter
5
+ // +sprite-img("icons-32.png", 1)
6
+ // a.facebook
7
+ // +sprite-img("icons-32png", 2)
8
+ //
9
+ // Example 2:
10
+ //
11
+ // a
12
+ // +sprite-background("icons-32.png")
13
+ // a.twitter
14
+ // +sprite-column(1)
15
+ // a.facebook
16
+ // +sprite-row(2)
17
+ // @doc on
18
+
19
+ $sprite-default-size: 32px !default;
20
+
21
+ $sprite-default-margin: 0px !default;
22
+
23
+ $sprite-image-default-width: $sprite-default-size !default;
24
+
25
+ $sprite-image-default-height: $sprite-default-size !default;
26
+
27
+ // Sets all the rules for a sprite from a given sprite image to show just one of the sprites.
28
+ // To reduce duplication use a sprite-bg mixin for common properties and a sprite-select mixin for positioning.
29
+ @mixin sprite-img($img, $col, $row: 1, $width: $sprite-image-default-width, $height: $sprite-image-default-height, $margin: $sprite-default-margin) {
30
+ @include sprite-background($img, $width, $height);
31
+ @include sprite-position($col, $row, $width, $height, $margin);
32
+ }
33
+
34
+ // Sets rules common for all sprites, assumes you want a square, but allows a rectangular region.
35
+ @mixin sprite-background($img, $width: $sprite-default-size, $height: $width) {
36
+ @include sprite-background-rectangle($img, $width, $height);
37
+ }
38
+
39
+ // Sets rules common for all sprites, assumes a rectangular region.
40
+ @mixin sprite-background-rectangle($img, $width: $sprite-image-default-width, $height: $sprite-image-default-height) {
41
+ background: image-url($img) no-repeat;
42
+ width: $width;
43
+ height: $height;
44
+ overflow: hidden;
45
+ }
46
+
47
+ // Allows horizontal sprite positioning optimized for a single row of sprites.
48
+ @mixin sprite-column($col, $width: $sprite-image-default-width, $margin: $sprite-default-margin) {
49
+ @include sprite-position($col, 1, $width, 0px, $margin);
50
+ }
51
+
52
+ // Allows vertical sprite positioning optimized for a single column of sprites.
53
+ @mixin sprite-row($row, $height: $sprite-image-default-height, $margin: $sprite-default-margin) {
54
+ @include sprite-position(1, $row, 0px, $height, $margin);
55
+ }
56
+
57
+ // Allows vertical and horizontal sprite positioning from a grid of equal dimensioned sprites.
58
+ @mixin sprite-position($col, $row: 1, $width: $sprite-image-default-width, $height: $sprite-image-default-height, $margin: $sprite-default-margin) {
59
+ $x: ($col - 1) * -$width - ($col - 1) * $margin;
60
+ $y: ($row - 1) * -$height - ($row - 1) * $margin;
61
+ background-position: $x $y;
62
+ }
63
+
64
+
65
+
66
+ // Similar to 'sprite-replace-text-with-dimensions' but does not autmaticly set the demensions
67
+ @mixin sprite-replace-text ($map, $sprite, $dimensions: false, $offset-x: 0, $offset-y: 0) {
68
+ @include hide-text;
69
+ @include sprite($map, $sprite, $dimensions, $offset-x, $offset-y);
70
+ background-image: $map;
71
+ background-repeat: no-repeat;
72
+ }
73
+
74
+ // Similar to 'replace-text-with-dimensions' but with sprites
75
+ // To use, create your sprite and then pass it in the `$map` param
76
+ // The name of the image in the sprite folder should be `$img-name`
77
+ @mixin sprite-replace-text-with-dimensions ($map, $sprite, $offset-x: 0, $offset-y: 0){
78
+ @include sprite-replace-text ($map, $sprite, true, $offset-x, $offset-y);
79
+ }
@@ -0,0 +1,22 @@
1
+ @mixin alternating-rows-and-columns($even-row-color, $odd-row-color, $dark-intersection, $header-color: white, $footer-color: white) {
2
+ th {
3
+ background-color: $header-color;
4
+ &.even, &:nth-child(2n) {
5
+ background-color: $header-color - $dark-intersection; } }
6
+ tr {
7
+ &.odd, &:nth-child(2n+1) {
8
+ td {
9
+ background-color: $odd-row-color;
10
+ &.even, &:nth-child(2n) {
11
+ background-color: $odd-row-color - $dark-intersection; } } }
12
+ }
13
+ tr.even {
14
+ td {
15
+ background-color: $even-row-color;
16
+ &.even, &:nth-child(2n) {
17
+ background-color: $even-row-color - $dark-intersection; } } }
18
+ tfoot {
19
+ th, td {
20
+ background-color: $footer-color;
21
+ &.even, &:nth-child(2n) {
22
+ background-color: $footer-color - $dark-intersection; } } } }
@@ -0,0 +1,33 @@
1
+ @mixin outer-table-borders($width: 2px, $color: black) {
2
+ border: $width solid $color;
3
+ thead {
4
+ th {
5
+ border-bottom: $width solid $color; } }
6
+ tfoot {
7
+ th, td {
8
+ border-top: $width solid $color; } }
9
+ th {
10
+ &:first-child {
11
+ border-right: $width solid $color; } } }
12
+
13
+ @mixin inner-table-borders($width: 2px, $color: black) {
14
+ th, td {
15
+ border: {
16
+ right: $width solid $color;
17
+ bottom: $width solid $color;
18
+ left-width: 0px;
19
+ top-width: 0px; };
20
+ &:last-child,
21
+ &.last {
22
+ border-right-width: 0px; } }
23
+
24
+ // IE8 ignores rules that are included on the same line as :last-child
25
+ // see http://www.richardscarrott.co.uk/posts/view/ie8-last-child-bug for details
26
+
27
+ tbody, tfoot {
28
+ tr:last-child {
29
+ th, td {
30
+ border-bottom-width: 0px; } }
31
+ tr.last {
32
+ th, td {
33
+ border-bottom-width: 0px; } } } }
@@ -0,0 +1,9 @@
1
+ @mixin table-scaffolding {
2
+ th {
3
+ text-align: center;
4
+ font-weight: bold; }
5
+ td,
6
+ th {
7
+ padding: 2px;
8
+ &.numeric {
9
+ text-align: right; } } }
@@ -0,0 +1,3 @@
1
+ @warn "This import is deprecated. Use 'compass/typography/text/ellipsis' instead.";
2
+
3
+ @import "../../typography/text/ellipsis";
@@ -0,0 +1,3 @@
1
+ @warn "This import is deprecated. Use 'compass/typography/text/nowrap' instead.";
2
+
3
+ @import "../../typography/text/nowrap";
@@ -0,0 +1,3 @@
1
+ @warn "This import is deprecated. Use 'compass/typography/text/replacement' instead.";
2
+
3
+ @import "../../typography/text/replacement";
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: comixins
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - yuyasat
@@ -31,10 +31,128 @@ executables: []
31
31
  extensions: []
32
32
  extra_rdoc_files: []
33
33
  files:
34
+ - ".gitignore"
35
+ - ".rubocop.yml"
36
+ - Gemfile
34
37
  - MIT-LICENSE
38
+ - README.md
35
39
  - Rakefile
40
+ - comixins.gemspec
36
41
  - lib/comixins.rb
37
42
  - lib/comixins/version.rb
43
+ - vendor/assets/stylesheets/LICENSE.markdown
44
+ - vendor/assets/stylesheets/LICENSE_backup.md
45
+ - vendor/assets/stylesheets/_animate.scss
46
+ - vendor/assets/stylesheets/_compass.scss
47
+ - vendor/assets/stylesheets/_lemonade.scss
48
+ - vendor/assets/stylesheets/animation/_animate.scss
49
+ - vendor/assets/stylesheets/animation/_core.scss
50
+ - vendor/assets/stylesheets/animation/_shared.scss
51
+ - vendor/assets/stylesheets/animation/animate/_attention-seekers.scss
52
+ - vendor/assets/stylesheets/animation/animate/_bouncing.scss
53
+ - vendor/assets/stylesheets/animation/animate/_classes.scss
54
+ - vendor/assets/stylesheets/animation/animate/_fading.scss
55
+ - vendor/assets/stylesheets/animation/animate/_flippers.scss
56
+ - vendor/assets/stylesheets/animation/animate/_lightspeed.scss
57
+ - vendor/assets/stylesheets/animation/animate/_rotating.scss
58
+ - vendor/assets/stylesheets/animation/animate/_specials.scss
59
+ - vendor/assets/stylesheets/animation/animate/bouncing/_bouncing-entrances.scss
60
+ - vendor/assets/stylesheets/animation/animate/bouncing/_bouncing-exits.scss
61
+ - vendor/assets/stylesheets/animation/animate/fading/_fading-entrances.scss
62
+ - vendor/assets/stylesheets/animation/animate/fading/_fading-exits.scss
63
+ - vendor/assets/stylesheets/animation/animate/rotating/_rotating-entrances.scss
64
+ - vendor/assets/stylesheets/animation/animate/rotating/_rotating-exits.scss
65
+ - vendor/assets/stylesheets/comixins.scss
66
+ - vendor/assets/stylesheets/compass/_css3.scss
67
+ - vendor/assets/stylesheets/compass/_functions.scss
68
+ - vendor/assets/stylesheets/compass/_layout.scss
69
+ - vendor/assets/stylesheets/compass/_reset-legacy.scss
70
+ - vendor/assets/stylesheets/compass/_reset.scss
71
+ - vendor/assets/stylesheets/compass/_support.scss
72
+ - vendor/assets/stylesheets/compass/_typography.scss
73
+ - vendor/assets/stylesheets/compass/_utilities.scss
74
+ - vendor/assets/stylesheets/compass/css3/_animation.scss
75
+ - vendor/assets/stylesheets/compass/css3/_appearance.scss
76
+ - vendor/assets/stylesheets/compass/css3/_background-clip.scss
77
+ - vendor/assets/stylesheets/compass/css3/_background-origin.scss
78
+ - vendor/assets/stylesheets/compass/css3/_background-size.scss
79
+ - vendor/assets/stylesheets/compass/css3/_border-radius.scss
80
+ - vendor/assets/stylesheets/compass/css3/_box-shadow.scss
81
+ - vendor/assets/stylesheets/compass/css3/_box-sizing.scss
82
+ - vendor/assets/stylesheets/compass/css3/_box.scss
83
+ - vendor/assets/stylesheets/compass/css3/_columns.scss
84
+ - vendor/assets/stylesheets/compass/css3/_filter.scss
85
+ - vendor/assets/stylesheets/compass/css3/_flexbox.scss
86
+ - vendor/assets/stylesheets/compass/css3/_font-face.scss
87
+ - vendor/assets/stylesheets/compass/css3/_hyphenation.scss
88
+ - vendor/assets/stylesheets/compass/css3/_images.scss
89
+ - vendor/assets/stylesheets/compass/css3/_inline-block.scss
90
+ - vendor/assets/stylesheets/compass/css3/_opacity.scss
91
+ - vendor/assets/stylesheets/compass/css3/_pie.scss
92
+ - vendor/assets/stylesheets/compass/css3/_regions.scss
93
+ - vendor/assets/stylesheets/compass/css3/_shared.scss
94
+ - vendor/assets/stylesheets/compass/css3/_text-shadow.scss
95
+ - vendor/assets/stylesheets/compass/css3/_transform-legacy.scss
96
+ - vendor/assets/stylesheets/compass/css3/_transform.scss
97
+ - vendor/assets/stylesheets/compass/css3/_transition.scss
98
+ - vendor/assets/stylesheets/compass/css3/_user-interface.scss
99
+ - vendor/assets/stylesheets/compass/functions/_colors.scss
100
+ - vendor/assets/stylesheets/compass/functions/_constants.scss
101
+ - vendor/assets/stylesheets/compass/functions/_cross_browser_support.scss
102
+ - vendor/assets/stylesheets/compass/functions/_display.scss
103
+ - vendor/assets/stylesheets/compass/functions/_gradient_support.scss
104
+ - vendor/assets/stylesheets/compass/functions/_lists.scss
105
+ - vendor/assets/stylesheets/compass/layout/_grid-background.scss
106
+ - vendor/assets/stylesheets/compass/layout/_sticky-footer.scss
107
+ - vendor/assets/stylesheets/compass/layout/_stretching.scss
108
+ - vendor/assets/stylesheets/compass/reset/_utilities-legacy.scss
109
+ - vendor/assets/stylesheets/compass/reset/_utilities.scss
110
+ - vendor/assets/stylesheets/compass/typography/_links.scss
111
+ - vendor/assets/stylesheets/compass/typography/_lists.scss
112
+ - vendor/assets/stylesheets/compass/typography/_text.scss
113
+ - vendor/assets/stylesheets/compass/typography/_vertical_rhythm.scss
114
+ - vendor/assets/stylesheets/compass/typography/links/_hover-link.scss
115
+ - vendor/assets/stylesheets/compass/typography/links/_link-colors.scss
116
+ - vendor/assets/stylesheets/compass/typography/links/_unstyled-link.scss
117
+ - vendor/assets/stylesheets/compass/typography/lists/_bullets.scss
118
+ - vendor/assets/stylesheets/compass/typography/lists/_horizontal-list.scss
119
+ - vendor/assets/stylesheets/compass/typography/lists/_inline-block-list.scss
120
+ - vendor/assets/stylesheets/compass/typography/lists/_inline-list.scss
121
+ - vendor/assets/stylesheets/compass/typography/text/_ellipsis.scss
122
+ - vendor/assets/stylesheets/compass/typography/text/_force-wrap.scss
123
+ - vendor/assets/stylesheets/compass/typography/text/_nowrap.scss
124
+ - vendor/assets/stylesheets/compass/typography/text/_replacement.scss
125
+ - vendor/assets/stylesheets/compass/utilities/_color.scss
126
+ - vendor/assets/stylesheets/compass/utilities/_general.scss
127
+ - vendor/assets/stylesheets/compass/utilities/_links.scss
128
+ - vendor/assets/stylesheets/compass/utilities/_lists.scss
129
+ - vendor/assets/stylesheets/compass/utilities/_print.scss
130
+ - vendor/assets/stylesheets/compass/utilities/_sprites.scss
131
+ - vendor/assets/stylesheets/compass/utilities/_tables.scss
132
+ - vendor/assets/stylesheets/compass/utilities/_text.scss
133
+ - vendor/assets/stylesheets/compass/utilities/color/_contrast.scss
134
+ - vendor/assets/stylesheets/compass/utilities/general/_clearfix.scss
135
+ - vendor/assets/stylesheets/compass/utilities/general/_float.scss
136
+ - vendor/assets/stylesheets/compass/utilities/general/_hacks.scss
137
+ - vendor/assets/stylesheets/compass/utilities/general/_min.scss
138
+ - vendor/assets/stylesheets/compass/utilities/general/_reset.scss
139
+ - vendor/assets/stylesheets/compass/utilities/general/_tabs.scss
140
+ - vendor/assets/stylesheets/compass/utilities/general/_tag-cloud.scss
141
+ - vendor/assets/stylesheets/compass/utilities/links/_hover-link.scss
142
+ - vendor/assets/stylesheets/compass/utilities/links/_link-colors.scss
143
+ - vendor/assets/stylesheets/compass/utilities/links/_unstyled-link.scss
144
+ - vendor/assets/stylesheets/compass/utilities/lists/_bullets.scss
145
+ - vendor/assets/stylesheets/compass/utilities/lists/_horizontal-list.scss
146
+ - vendor/assets/stylesheets/compass/utilities/lists/_inline-block-list.scss
147
+ - vendor/assets/stylesheets/compass/utilities/lists/_inline-list.scss
148
+ - vendor/assets/stylesheets/compass/utilities/sprites/_base.scss
149
+ - vendor/assets/stylesheets/compass/utilities/sprites/_sprite-img.scss
150
+ - vendor/assets/stylesheets/compass/utilities/tables/_alternating-rows-and-columns.scss
151
+ - vendor/assets/stylesheets/compass/utilities/tables/_borders.scss
152
+ - vendor/assets/stylesheets/compass/utilities/tables/_scaffolding.scss
153
+ - vendor/assets/stylesheets/compass/utilities/text/_ellipsis.scss
154
+ - vendor/assets/stylesheets/compass/utilities/text/_nowrap.scss
155
+ - vendor/assets/stylesheets/compass/utilities/text/_replacement.scss
38
156
  homepage: https://github.com/yuyataki/comixins
39
157
  licenses:
40
158
  - MIT