sass-zero 0.0.17 → 0.0.18
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Example.html +2 -2
- data/README.md +0 -1
- data/app/assets/stylesheets/sass-zero/base/breadboard.scss +6 -3
- data/app/assets/stylesheets/sass-zero/utilities/pull.scss +1 -1
- data/app/assets/stylesheets/sass-zero/utilities/push.scss +1 -1
- data/app/assets/stylesheets/sass-zero/variables/colors.scss +9 -9
- data/app/assets/stylesheets/sass-zero/variables/effects.scss +2 -1
- data/app/assets/stylesheets/sass-zero/variables/spacing.scss +1 -1
- data/lib/sass/zero/version.rb +1 -1
- data/package.json +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 32a5f44054178e89c43f0af8bbf278f95476c42387f90fa0d1ccfcb673017ea6
|
4
|
+
data.tar.gz: 89ea2c7d3cc58da32fdddaf4787802f887c680b3ed6c8aad650e4b342e413c09
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ff818d924aca1afe44cf75d75c3a3883ab07699ec64ae8d887228a1ce49aba5c2cb653b95a65671bbe8e029805f15edd35e5405e669ddc897b58357d9befaacd
|
7
|
+
data.tar.gz: 86b20f5c7bf71a7bd0666c95654a951e69cc7b70c459a52ec1bfd567f9ea2247daf176a56605aed032f2d6f2a53b7f98253c7a7a0f5fd1e6eba475f02001b943
|
data/Example.html
CHANGED
data/README.md
CHANGED
@@ -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-
|
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-
|
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-
|
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, "
|
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, "
|
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(
|
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-
|
30
|
+
$size-map: ("xs": $size-1, "sm": $size-2, "md": $size-4, "lg": $size-6, "xl": $size-8, "2xl": $size-10);
|
data/lib/sass/zero/version.rb
CHANGED
data/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "sass-zero",
|
3
|
-
"version": "0.0.
|
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.
|
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-
|
11
|
+
date: 2020-03-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: autoprefixer-rails
|