shipyard-framework 0.3.0 → 0.3.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 99e749ccd1dbf24d1f45e0d6f603322bcea18e27
4
- data.tar.gz: a9cc03511cda2d5c3451d773f67a015795902b98
3
+ metadata.gz: f1919d5ded599c74a956091ada5c8fb4c57906e9
4
+ data.tar.gz: 012ea81fa4641a7d9853dd6cf7affd7fbdcfb380
5
5
  SHA512:
6
- metadata.gz: 1b91ab19727beeb480981e88b0e3ecb28fded9567bcd5c478a14028c9d5906018e9b04b9eafac8e3a5bdd3fbf060aeb615c46f459b0f3c105732b4238580807b
7
- data.tar.gz: 5be356cc63978811a28c060395935feee7edfeeb9f4140f232e1110280ede22b6292d2955d7e5fc88db65009d1fa7845e7823e98e7b779568a202a1b149caae8
6
+ metadata.gz: 08709916b079ff0e0e8554b6bd48dad6aad0bf1ef496d27923c980dfea3d01106037b972d1c4c076a575f34b5a70b7d76bec66f5d9d4dcd5b11939ac8afc3dd4
7
+ data.tar.gz: 48a34672728fe4d198d28e574e3673849d3bc51979be3a217f347ebd4c9b1e3a27410751c1cd148909cbd0e92a20839a871bdbc6b20df91674f48d0c7f7ace67
@@ -0,0 +1,2 @@
1
+ $breakpoints: (x1: 770px, x2: 920px, x3: 1200px, x4: 1600px) !default
2
+ $margins: (x0: 10px, x1: 20px, x2: 30px, x3: 30px, x4: 40px) !default
@@ -0,0 +1,14 @@
1
+ // Component Layering
2
+ $z-index: (modal: 200) !default
3
+
4
+ $bg-color: $gray-lightest !default
5
+
6
+ $border-radius: 5px !default
7
+
8
+ $border-color: darken($bg-color, 12%) !default
9
+ $border-color-dark: darken($border-color, 10%) !default
10
+ $border-color-darker: darken($border-color, 14%) !default
11
+ $border-color-darkest: darken($border-color, 18%) !default
12
+ $border-color-light: darken($bg-color, 6%) !default
13
+ $border-color-lighter: darken($bg-color, 4%) !default
14
+ $border-color-lightest: darken($bg-color, 2%) !default
@@ -0,0 +1,29 @@
1
+ // Font
2
+ $font-family: Helvetica, Arial, sans-serif !default
3
+
4
+ // Font: Weights
5
+ $normal: 300 !default
6
+ $italic: 400 !default
7
+ $medium: 500 !default
8
+ $medium-italic: 600 !default
9
+ $bold: 700 !default
10
+ $bold-italic: 800 !default
11
+
12
+ $font-sizes: (xxs: 12px, xs: 13px, sm: 14px, md: 16px, lg: 18px, xl: 20px, xxl: 22px, xxxl: 24px) !default
13
+ $font-size: map-get($font-sizes, md) !default
14
+ $font-size-xxxl: map-get($font-sizes, xxxl) !default
15
+ $font-size-xxl: map-get($font-sizes, xxl) !default
16
+ $font-size-xl: map-get($font-sizes, xl) !default
17
+ $font-size-lg: map-get($font-sizes, lg) !default
18
+ $font-size-sm: map-get($font-sizes, sm) !default
19
+ $font-size-xs: map-get($font-sizes, xs) !default
20
+ $font-size-xxs: map-get($font-sizes, xxs) !default
21
+ $font: $normal 16px / 1.6 $font-family !default
22
+ $text-color: $gray-dark !default
23
+ $text-color-disabled: lighten($gray, 15%) !default
24
+ $text-color-lightest: lighten($gray, 10%) !default
25
+ $text-color-lighter: lighten($gray, 5%) !default
26
+ $text-color-light: $gray !default
27
+ $text-color-darkest: $gray-dark !default
28
+ $text-color-darker: lighten($gray-dark, 4%) !default
29
+ $text-color-dark: lighten($gray-dark, 7%) !default
@@ -1,3 +1,3 @@
1
1
  module Shipyard
2
- VERSION = '0.3.0'
2
+ VERSION = '0.3.1'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: shipyard-framework
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Shipyard
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-08-08 00:00:00.000000000 Z
11
+ date: 2017-08-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: actionview
@@ -114,9 +114,9 @@ files:
114
114
  - assets/stylesheets/shipyard/utilities/_positioning.sass
115
115
  - assets/stylesheets/shipyard/variables/_color_utilities.sass
116
116
  - assets/stylesheets/shipyard/variables/_colors.scss
117
- - assets/stylesheets/shipyard/variables/_grid.scss
118
- - assets/stylesheets/shipyard/variables/_misc.scss
119
- - assets/stylesheets/shipyard/variables/_typography.scss
117
+ - assets/stylesheets/shipyard/variables/_grid.sass
118
+ - assets/stylesheets/shipyard/variables/_misc.sass
119
+ - assets/stylesheets/shipyard/variables/_typography.sass
120
120
  - lib/shipyard-framework.rb
121
121
  - lib/shipyard-framework/icons.rb
122
122
  - lib/shipyard-framework/jekyll/button_helper.rb
@@ -1,2 +0,0 @@
1
- $breakpoints: (x1: 770px, x2: 920px, x3: 1200px, x4: 1600px);
2
- $margins: (x0: 10px, x1: 20px, x2: 30px, x3: 30px, x4: 40px);
@@ -1,14 +0,0 @@
1
- // Component Layering
2
- $z-index: (modal: 200);
3
-
4
- $bg-color: $gray-lightest;
5
-
6
- $border-radius: 5px;
7
-
8
- $border-color: darken($bg-color, 12%);
9
- $border-color-dark: darken($border-color, 10%);
10
- $border-color-darker: darken($border-color, 14%);
11
- $border-color-darkest: darken($border-color, 18%);
12
- $border-color-light: darken($bg-color, 6%);
13
- $border-color-lighter: darken($bg-color, 4%);
14
- $border-color-lightest: darken($bg-color, 2%);
@@ -1,29 +0,0 @@
1
- // Font
2
- $font-family: 'museo-sans-rounded', 'Museo Sans Rounded', Arial, sans-serif;
3
-
4
- // Font: Weights
5
- $normal: 300;
6
- $italic: 400;
7
- $medium: 500;
8
- $medium-italic: 600;
9
- $bold: 700;
10
- $bold-italic: 800;
11
-
12
- $font-sizes: (xxs: 12px, xs: 13px, sm: 14px, md: 16px, lg: 18px, xl: 20px, xxl: 22px, xxxl: 24px);
13
- $font-size: map-get($font-sizes, md);
14
- $font-size-xxxl: map-get($font-sizes, xxxl);
15
- $font-size-xxl: map-get($font-sizes, xxl);
16
- $font-size-xl: map-get($font-sizes, xl);
17
- $font-size-lg: map-get($font-sizes, lg);
18
- $font-size-sm: map-get($font-sizes, sm);
19
- $font-size-xs: map-get($font-sizes, xs);
20
- $font-size-xxs: map-get($font-sizes, xxs);
21
- $font: $normal 16px / 1.6 $font-family;
22
- $text-color: $gray-dark;
23
- $text-color-disabled: lighten($gray, 15%);
24
- $text-color-lightest: lighten($gray, 10%);
25
- $text-color-lighter: lighten($gray, 5%);
26
- $text-color-light: $gray;
27
- $text-color-darkest: $gray-dark;
28
- $text-color-darker: lighten($gray-dark, 4%);
29
- $text-color-dark: lighten($gray-dark, 7%);