kentucky 0.5.2 → 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (45) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +1 -0
  3. data/app/assets/stylesheets/kentucky/_debug.scss +70 -74
  4. data/app/assets/stylesheets/kentucky/_kentucky.scss +47 -16
  5. data/app/assets/stylesheets/kentucky/_project-settings.scss +80 -41
  6. data/app/assets/stylesheets/kentucky/base/_forms.scss +65 -0
  7. data/app/assets/stylesheets/kentucky/base/_normalize.scss +33 -7
  8. data/app/assets/stylesheets/kentucky/base/_typography.scss +38 -29
  9. data/app/assets/stylesheets/kentucky/functions/_gradient-functions.scss +214 -0
  10. data/app/assets/stylesheets/kentucky/functions/_remify.scss +39 -0
  11. data/app/assets/stylesheets/kentucky/{extends/_mute.scss → functions/_strip-units.scss} +3 -4
  12. data/app/assets/stylesheets/kentucky/functions/_tint-shade.scss +12 -0
  13. data/app/assets/stylesheets/kentucky/grid/_grid.scss +114 -0
  14. data/app/assets/stylesheets/kentucky/{extends → helpers}/_alignment.scss +0 -0
  15. data/app/assets/stylesheets/kentucky/helpers/_anti-aliased.scss +8 -0
  16. data/app/assets/stylesheets/kentucky/helpers/_border.scss +32 -0
  17. data/app/assets/stylesheets/kentucky/{extends → helpers}/_breadcrumbs.scss +0 -0
  18. data/app/assets/stylesheets/kentucky/{extends → helpers}/_capslock.scss +0 -0
  19. data/app/assets/stylesheets/kentucky/helpers/_clearfix.scss +14 -0
  20. data/app/assets/stylesheets/kentucky/{mixins → helpers}/_font-size.scss +4 -5
  21. data/app/assets/stylesheets/kentucky/{extends → helpers}/_go.scss +0 -0
  22. data/app/assets/stylesheets/kentucky/helpers/_headings.scss +11 -0
  23. data/app/assets/stylesheets/kentucky/helpers/_hide-text.scss +9 -0
  24. data/app/assets/stylesheets/kentucky/helpers/_html5-input-types.scss +30 -0
  25. data/app/assets/stylesheets/kentucky/helpers/_linear-gradient.scss +42 -0
  26. data/app/assets/stylesheets/kentucky/helpers/_mute.scss +15 -0
  27. data/app/assets/stylesheets/kentucky/helpers/_position.scss +42 -0
  28. data/app/assets/stylesheets/kentucky/helpers/_prefixer.scss +34 -0
  29. data/app/assets/stylesheets/kentucky/helpers/_radial-gradient.scss +24 -0
  30. data/app/assets/stylesheets/kentucky/{extends → helpers}/_show-hide.scss +0 -0
  31. data/app/assets/stylesheets/kentucky/helpers/_size.scss +44 -0
  32. data/app/assets/stylesheets/kentucky/helpers/_strip-unit.scss +7 -0
  33. data/app/assets/stylesheets/kentucky/helpers/_transitions.scss +34 -0
  34. data/app/assets/stylesheets/kentucky/helpers/_triangle.scss +49 -0
  35. data/app/assets/stylesheets/kentucky/helpers/_truncate.scss +19 -0
  36. data/kentucky.gemspec +3 -3
  37. data/lib/kentucky/version.rb +1 -1
  38. data/readme.md +14 -36
  39. metadata +34 -19
  40. data/Kentucky.sublime-workspace +0 -556
  41. data/app/assets/stylesheets/kentucky/mixins/_borders.scss +0 -10
  42. data/app/assets/stylesheets/kentucky/mixins/_headings.scss +0 -23
  43. data/app/assets/stylesheets/kentucky/mixins/_sprite.scss +0 -9
  44. data/app/assets/stylesheets/kentucky/mixins/_truncate.scss +0 -14
  45. data/app/assets/stylesheets/style.scss +0 -12
@@ -1,10 +0,0 @@
1
- // ------------------------------------------------------------------- //
2
- // Custom Borders / Widths
3
- //
4
- // @include border(2px 0 5px 3px, solid, #B4DA55);
5
- // ------------------------------------------------------------------- //
6
-
7
- @mixin border($border-widths, $border-style, $border-color){
8
- border: $border-style $border-color;
9
- border-width: $border-widths;
10
- }
@@ -1,23 +0,0 @@
1
- // ------------------------------------------------------------------- //
2
- // Style any number of headings at once
3
- //
4
- // .foo{
5
- // @include headings(1,3){
6
- // color: #B4DA55;
7
- // }
8
- // }
9
- // ------------------------------------------------------------------- //
10
-
11
- @mixin headings($from: 1, $to: 6){
12
- %base-heading{
13
- @content
14
- }
15
-
16
- @if $from >= 1 and $to <= 6{
17
- @for $i from $from through $to{
18
- h#{$i}{
19
- @extend %base-heading;
20
- }
21
- }
22
- }
23
- }
@@ -1,9 +0,0 @@
1
- // ------------------------------------------------------------------- //
2
- // Sprite Sheet
3
- //
4
- // @include sprite(0,0);
5
- // ------------------------------------------------------------------- //
6
-
7
- @mixin sprite($col, $row){
8
- background: url($sprite-sheet-location) no-repeat ($col * -$sprite-sheet-gridsize) ($row * -$sprite-sheet-gridsize);
9
- }
@@ -1,14 +0,0 @@
1
- // ------------------------------------------------------------------- //
2
- // Text Truncation
3
- //
4
- // @include truncate(450px);
5
- // Only works for single-line truncation
6
- // ------------------------------------------------------------------- //
7
-
8
- @mixin truncate($truncation-boundary){
9
- display: inline-block;
10
- max-width: $truncation-boundary;
11
- white-space: nowrap;
12
- overflow: hidden;
13
- text-overflow: ellipsis;
14
- }
@@ -1,12 +0,0 @@
1
- // ------------------------------------------------------------------- //
2
- // Framework Imports
3
- // ------------------------------------------------------------------- //
4
-
5
- @import 'bourbon/bourbon';
6
- @import 'neat/neat';
7
- @import 'kentucky/kentucky';
8
-
9
-
10
- // ------------------------------------------------------------------- //
11
- // Project Imports
12
- // ------------------------------------------------------------------- //