sass-zero 0.0.17 → 0.0.18

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: aebcb1df4bd5282119b667302b006ced48c2669eaef25f7f3f68f08f65adbdbd
4
- data.tar.gz: 7f9e3967528ee6231c5271e59f71b4bfbe69ca1f4b053bb14b7522db8dd86699
3
+ metadata.gz: 32a5f44054178e89c43f0af8bbf278f95476c42387f90fa0d1ccfcb673017ea6
4
+ data.tar.gz: 89ea2c7d3cc58da32fdddaf4787802f887c680b3ed6c8aad650e4b342e413c09
5
5
  SHA512:
6
- metadata.gz: 77808a82717af9b2518f3751f2267940f053f0f3b0fc5cdb8f405d0d6a2ac3802a837a4f60bb3dde5edef52af7204f7ebae928d70e7d5e5b37909170cb708bfa
7
- data.tar.gz: ef4386a8755e002e1846a758bf7bfbc202a8e251057e5a2234ec8939f8c21787f0a5a3fdb480b9c51da6cf02c330eb1ed4e77e1a360b6568f2731d3ffa009e95
6
+ metadata.gz: ff818d924aca1afe44cf75d75c3a3883ab07699ec64ae8d887228a1ce49aba5c2cb653b95a65671bbe8e029805f15edd35e5405e669ddc897b58357d9befaacd
7
+ data.tar.gz: 86b20f5c7bf71a7bd0666c95654a951e69cc7b70c459a52ec1bfd567f9ea2247daf176a56605aed032f2d6f2a53b7f98253c7a7a0f5fd1e6eba475f02001b943
@@ -82,9 +82,9 @@
82
82
  <label for="radio" class="u-display-ib">Option 3</label>
83
83
  </div>
84
84
  </div>
85
-
86
- <input type="submit" value="Send">
87
85
  </fieldset>
86
+
87
+ <input type="submit" value="Send">
88
88
  </form>
89
89
 
90
90
  <table>
data/README.md CHANGED
@@ -79,7 +79,6 @@ Create some stylesheet using [BEM](http://getbem.com/naming) and [SASS-ZERO Vari
79
79
 
80
80
  ```scss
81
81
  @import "sass-zero/variables";
82
- @import "sass-zero/mixins";
83
82
 
84
83
  .block {
85
84
  color: $red-300;
@@ -80,6 +80,7 @@ input[type='submit'] {
80
80
  background-position: center !important;
81
81
  background-repeat: no-repeat;
82
82
  background-size: auto $size-4;
83
+ vertical-align: text-top;
83
84
  }
84
85
 
85
86
  &--borderless {
@@ -112,7 +113,8 @@ pre {
112
113
  }
113
114
 
114
115
  hr {
115
- margin: $size-8 $size-0;
116
+ margin: $size-10 $size-0;
117
+ border-bottom-width: $border-2;
116
118
  }
117
119
 
118
120
  input[type='email'],
@@ -140,6 +142,7 @@ select {
140
142
 
141
143
  &:focus {
142
144
  border-color: $breadboard-color;
145
+ box-shadow: $shadow-outline;
143
146
  outline: 0;
144
147
  }
145
148
  }
@@ -226,7 +229,7 @@ fieldset,
226
229
  input,
227
230
  select,
228
231
  textarea {
229
- margin-bottom: $size-3;
232
+ margin-bottom: $size-4;
230
233
  }
231
234
 
232
235
  blockquote,
@@ -238,7 +241,7 @@ p,
238
241
  pre,
239
242
  table,
240
243
  ul {
241
- margin-bottom: $size-4;
244
+ margin-bottom: $size-6;
242
245
  }
243
246
 
244
247
  table {
@@ -2,7 +2,7 @@
2
2
 
3
3
  // *******************************************************************
4
4
  // Pull Utilities
5
- // $size-map: ("xs": $size-1, "sm": $size-2, "base": $size-3, "lg": $size-4, "md": $size-6, "lg": $size-10);
5
+ // $size-map: ("xs": $size-1, "sm": $size-2, "md": $size-3, "lg": $size-4, "xl": $size-5, "2xl": $size-6);
6
6
  // *******************************************************************
7
7
  @each $scale, $size in $size-map {
8
8
  .pull-#{$scale} {
@@ -2,7 +2,7 @@
2
2
 
3
3
  // *******************************************************************
4
4
  // Push Utilities
5
- // $size-map: ("xs": $size-1, "sm": $size-2, "base": $size-3, "lg": $size-4, "md": $size-6, "lg": $size-10);
5
+ // $size-map: ("xs": $size-1, "sm": $size-2, "md": $size-3, "lg": $size-4, "xl": $size-5, "2xl": $size-6);
6
6
  // *******************************************************************
7
7
  @each $scale, $size in $size-map {
8
8
  .push-#{$scale} {
@@ -7,15 +7,15 @@ $transparent: 'transparent';
7
7
  $black: #000;
8
8
  $white: #fff;
9
9
 
10
- $gray-100: #f7fafc;
11
- $gray-200: #edf2f7;
12
- $gray-300: #e2e8f0;
13
- $gray-400: #cbd5e0;
14
- $gray-500: #a0aec0;
15
- $gray-600: #718096;
16
- $gray-700: #4a5568;
17
- $gray-800: #2d3748;
18
- $gray-900: #1a202c;
10
+ $gray-100: #f7fafc !default;
11
+ $gray-200: #edf2f7 !default;
12
+ $gray-300: #e2e8f0 !default;
13
+ $gray-400: #cbd5e0 !default;
14
+ $gray-500: #a0aec0 !default;
15
+ $gray-600: #718096 !default;
16
+ $gray-700: #4a5568 !default;
17
+ $gray-800: #2d3748 !default;
18
+ $gray-900: #1a202c !default;
19
19
 
20
20
  $red-100: #fff5f5;
21
21
  $red-200: #fed7d7;
@@ -1,3 +1,4 @@
1
+
1
2
  // *******************************************************************
2
3
  // Box Shadow
3
4
  // Variables for controlling the box shadow of an element.
@@ -11,7 +12,7 @@ $shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0,
11
12
  $shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
12
13
  $shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
13
14
  $shadow-inner: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
14
- $shadow-outline: 0 0 0 3px rgba(66, 153, 225, 0.5);
15
+ $shadow-outline: 0 0 0 3px rgba(45,55,72, 0.5);
15
16
  $shadow-none: none;
16
17
 
17
18
  // *******************************************************************
@@ -27,4 +27,4 @@ $size-auto: auto;
27
27
  $size-full: 100%;
28
28
  $size-screen: 100vw;
29
29
 
30
- $size-map: ("xs": $size-1, "sm": $size-2, "md": $size-3, "lg": $size-4, "xl": $size-6, "2xl": $size-10);
30
+ $size-map: ("xs": $size-1, "sm": $size-2, "md": $size-4, "lg": $size-6, "xl": $size-8, "2xl": $size-10);
@@ -1,5 +1,5 @@
1
1
  module Sass
2
2
  module Zero
3
- VERSION = "0.0.17"
3
+ VERSION = "0.0.18"
4
4
  end
5
5
  end
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sass-zero",
3
- "version": "0.0.17",
3
+ "version": "0.0.18",
4
4
  "description": "A CSS framework for rapid UI development based on tailwindcss, miligram and BEM.",
5
5
  "homepage": "https://github.com/lazaronixon/sass-zero",
6
6
  "repository": "lazaronixon/sass-zero",
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sass-zero
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.17
4
+ version: 0.0.18
5
5
  platform: ruby
6
6
  authors:
7
7
  - lazaronixon
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-03-03 00:00:00.000000000 Z
11
+ date: 2020-03-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: autoprefixer-rails