kentucky 0.5.2 → 1.0.0
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.
- checksums.yaml +4 -4
- data/.gitignore +1 -0
- data/app/assets/stylesheets/kentucky/_debug.scss +70 -74
- data/app/assets/stylesheets/kentucky/_kentucky.scss +47 -16
- data/app/assets/stylesheets/kentucky/_project-settings.scss +80 -41
- data/app/assets/stylesheets/kentucky/base/_forms.scss +65 -0
- data/app/assets/stylesheets/kentucky/base/_normalize.scss +33 -7
- data/app/assets/stylesheets/kentucky/base/_typography.scss +38 -29
- data/app/assets/stylesheets/kentucky/functions/_gradient-functions.scss +214 -0
- data/app/assets/stylesheets/kentucky/functions/_remify.scss +39 -0
- data/app/assets/stylesheets/kentucky/{extends/_mute.scss → functions/_strip-units.scss} +3 -4
- data/app/assets/stylesheets/kentucky/functions/_tint-shade.scss +12 -0
- data/app/assets/stylesheets/kentucky/grid/_grid.scss +114 -0
- data/app/assets/stylesheets/kentucky/{extends → helpers}/_alignment.scss +0 -0
- data/app/assets/stylesheets/kentucky/helpers/_anti-aliased.scss +8 -0
- data/app/assets/stylesheets/kentucky/helpers/_border.scss +32 -0
- data/app/assets/stylesheets/kentucky/{extends → helpers}/_breadcrumbs.scss +0 -0
- data/app/assets/stylesheets/kentucky/{extends → helpers}/_capslock.scss +0 -0
- data/app/assets/stylesheets/kentucky/helpers/_clearfix.scss +14 -0
- data/app/assets/stylesheets/kentucky/{mixins → helpers}/_font-size.scss +4 -5
- data/app/assets/stylesheets/kentucky/{extends → helpers}/_go.scss +0 -0
- data/app/assets/stylesheets/kentucky/helpers/_headings.scss +11 -0
- data/app/assets/stylesheets/kentucky/helpers/_hide-text.scss +9 -0
- data/app/assets/stylesheets/kentucky/helpers/_html5-input-types.scss +30 -0
- data/app/assets/stylesheets/kentucky/helpers/_linear-gradient.scss +42 -0
- data/app/assets/stylesheets/kentucky/helpers/_mute.scss +15 -0
- data/app/assets/stylesheets/kentucky/helpers/_position.scss +42 -0
- data/app/assets/stylesheets/kentucky/helpers/_prefixer.scss +34 -0
- data/app/assets/stylesheets/kentucky/helpers/_radial-gradient.scss +24 -0
- data/app/assets/stylesheets/kentucky/{extends → helpers}/_show-hide.scss +0 -0
- data/app/assets/stylesheets/kentucky/helpers/_size.scss +44 -0
- data/app/assets/stylesheets/kentucky/helpers/_strip-unit.scss +7 -0
- data/app/assets/stylesheets/kentucky/helpers/_transitions.scss +34 -0
- data/app/assets/stylesheets/kentucky/helpers/_triangle.scss +49 -0
- data/app/assets/stylesheets/kentucky/helpers/_truncate.scss +19 -0
- data/kentucky.gemspec +3 -3
- data/lib/kentucky/version.rb +1 -1
- data/readme.md +14 -36
- metadata +34 -19
- data/Kentucky.sublime-workspace +0 -556
- data/app/assets/stylesheets/kentucky/mixins/_borders.scss +0 -10
- data/app/assets/stylesheets/kentucky/mixins/_headings.scss +0 -23
- data/app/assets/stylesheets/kentucky/mixins/_sprite.scss +0 -9
- data/app/assets/stylesheets/kentucky/mixins/_truncate.scss +0 -14
- 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
|
-
// ------------------------------------------------------------------- //
|