sass-zero 0.0.37 → 0.0.38
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/assets/stylesheets/sass-zero/base/breadboard.scss +5 -5
- data/app/assets/stylesheets/sass-zero/mixins.scss +7 -3
- data/app/assets/stylesheets/sass-zero/utilities/text.scss +0 -1
- data/app/assets/stylesheets/sass-zero/variables/colors.scss +111 -90
- data/app/assets/stylesheets/sass-zero/variables/effects.scss +2 -2
- data/app/assets/stylesheets/sass-zero/variables/width.scss +1 -0
- 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: da0529f23db61de5fdb0dfd396b024df435f1e40be84c0339b2af5f58b73e4b3
|
4
|
+
data.tar.gz: 456fbcc46813198e3003bdbb457362d5b5e380e57f2777a4dbd5082a02cc9d32
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 65ca85e6ee52aec6517a5bb64a72cdad1896e12365e016dd9cbce57c4ef550f7d89924772ff1a2d06dfafda8a8b880549249fdfe9fe8e21c240079672ee80f0f
|
7
|
+
data.tar.gz: a7c5336637313ae0d8df9cf30b462850af502e83584f4f79f9f9d4d67b689dcad35d5e34e63f5bbf73ac1fcfb20154d4e2934c54c567416a62a43d2ff3f146c1
|
@@ -43,8 +43,8 @@ blockquote {
|
|
43
43
|
}
|
44
44
|
|
45
45
|
&--tertiary {
|
46
|
-
background-color: transparent;
|
47
|
-
border-color: transparent;
|
46
|
+
background-color: $transparent;
|
47
|
+
border-color: $transparent;
|
48
48
|
}
|
49
49
|
}
|
50
50
|
|
@@ -95,7 +95,7 @@ hr {
|
|
95
95
|
|
96
96
|
.checkbox {
|
97
97
|
border-radius: $rounded;
|
98
|
-
@include selection;
|
98
|
+
@include selection($breadboard-primary);
|
99
99
|
|
100
100
|
&:checked {
|
101
101
|
background-image: url('data:image/svg+xml,<svg viewBox="0 0 20 20" fill="white" strokeWidth="2" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clip-rule="evenodd"></path></svg>');
|
@@ -107,14 +107,14 @@ hr {
|
|
107
107
|
|
108
108
|
.radio {
|
109
109
|
border-radius: $rounded-full;
|
110
|
-
@include selection;
|
110
|
+
@include selection($breadboard-primary);
|
111
111
|
|
112
112
|
&:checked {
|
113
113
|
background-image: url('data:image/svg+xml,<svg viewBox="0 0 16 16" fill="white" xmlns="http://www.w3.org/2000/svg"><circle cx="8" cy="8" r="3"/></svg>');
|
114
114
|
@include checked;
|
115
115
|
}
|
116
116
|
|
117
|
-
&:focus { @include focus; }
|
117
|
+
&:focus { @include focus; }
|
118
118
|
}
|
119
119
|
|
120
120
|
label, legend {
|
@@ -1,3 +1,7 @@
|
|
1
|
+
@import "sass-zero/variables/border";
|
2
|
+
@import "sass-zero/variables/effects";
|
3
|
+
@import "sass-zero/variables/spacing";
|
4
|
+
|
1
5
|
@mixin ellipsis {
|
2
6
|
overflow: hidden;
|
3
7
|
text-overflow: ellipsis;
|
@@ -23,15 +27,15 @@
|
|
23
27
|
}
|
24
28
|
|
25
29
|
@mixin focus {
|
26
|
-
border-color:
|
30
|
+
border-color: #a4cafe;
|
27
31
|
box-shadow: $shadow-outline;
|
28
32
|
outline: 0;
|
29
33
|
}
|
30
34
|
|
31
|
-
@mixin selection {
|
35
|
+
@mixin selection($color) {
|
32
36
|
appearance: none;
|
33
37
|
border-width: $border;
|
34
|
-
color: $
|
38
|
+
color: $color;
|
35
39
|
margin-bottom: -0.2rem;
|
36
40
|
height: $size-4;
|
37
41
|
width: $size-4;
|
@@ -7,102 +7,123 @@ $transparent: 'transparent';
|
|
7
7
|
$black: #000;
|
8
8
|
$white: #fff;
|
9
9
|
|
10
|
-
$gray-
|
11
|
-
$gray-
|
12
|
-
$gray-
|
13
|
-
$gray-
|
14
|
-
$gray-
|
15
|
-
$gray-
|
16
|
-
$gray-
|
17
|
-
$gray-
|
18
|
-
$gray-
|
10
|
+
$gray-50: #f9fafb;
|
11
|
+
$gray-100: #f4f5f7;
|
12
|
+
$gray-200: #e5e7eb;
|
13
|
+
$gray-300: #d2d6dc;
|
14
|
+
$gray-400: #9fa6b2;
|
15
|
+
$gray-500: #6b7280;
|
16
|
+
$gray-600: #4b5563;
|
17
|
+
$gray-700: #374151;
|
18
|
+
$gray-800: #252f3f;
|
19
|
+
$gray-900: #161e2e;
|
19
20
|
|
20
|
-
$
|
21
|
-
$
|
22
|
-
$
|
23
|
-
$
|
24
|
-
$
|
25
|
-
$
|
26
|
-
$
|
27
|
-
$
|
28
|
-
$
|
21
|
+
$cool-gray-50: #fbfdfe;
|
22
|
+
$cool-gray-100: #f1f5f9;
|
23
|
+
$cool-gray-200: #e2e8f0;
|
24
|
+
$cool-gray-300: #cfd8e3;
|
25
|
+
$cool-gray-400: #97a6ba;
|
26
|
+
$cool-gray-500: #64748b;
|
27
|
+
$cool-gray-600: #475569;
|
28
|
+
$cool-gray-700: #364152;
|
29
|
+
$cool-gray-800: #27303f;
|
30
|
+
$cool-gray-900: #1a202e;
|
29
31
|
|
30
|
-
$
|
31
|
-
$
|
32
|
-
$
|
33
|
-
$
|
34
|
-
$
|
35
|
-
$
|
36
|
-
$
|
37
|
-
$
|
38
|
-
$
|
32
|
+
$red-50: #fdf2f2;
|
33
|
+
$red-100: #fde8e8;
|
34
|
+
$red-200: #fbd5d5;
|
35
|
+
$red-300: #f8b4b4;
|
36
|
+
$red-400: #f98080;
|
37
|
+
$red-500: #f05252;
|
38
|
+
$red-600: #e02424;
|
39
|
+
$red-700: #c81e1e;
|
40
|
+
$red-800: #9b1c1c;
|
41
|
+
$red-900: #771d1d;
|
39
42
|
|
40
|
-
$
|
41
|
-
$
|
42
|
-
$
|
43
|
-
$
|
44
|
-
$
|
45
|
-
$
|
46
|
-
$
|
47
|
-
$
|
48
|
-
$
|
43
|
+
$orange-50: #fff8f1;
|
44
|
+
$orange-100: #feecdc;
|
45
|
+
$orange-200: #fcd9bd;
|
46
|
+
$orange-300: #fdba8c;
|
47
|
+
$orange-400: #ff8a4c;
|
48
|
+
$orange-500: #ff5a1f;
|
49
|
+
$orange-600: #d03801;
|
50
|
+
$orange-700: #b43403;
|
51
|
+
$orange-800: #8a2c0d;
|
52
|
+
$orange-900: #771d1d;
|
49
53
|
|
50
|
-
$
|
51
|
-
$
|
52
|
-
$
|
53
|
-
$
|
54
|
-
$
|
55
|
-
$
|
56
|
-
$
|
57
|
-
$
|
58
|
-
$
|
54
|
+
$yellow-50: #fdfdea;
|
55
|
+
$yellow-100: #fdf6b2;
|
56
|
+
$yellow-200: #fce96a;
|
57
|
+
$yellow-300: #faca15;
|
58
|
+
$yellow-400: #e3a008;
|
59
|
+
$yellow-500: #c27803;
|
60
|
+
$yellow-600: #9f580a;
|
61
|
+
$yellow-700: #8e4b10;
|
62
|
+
$yellow-800: #723b13;
|
63
|
+
$yellow-900: #633112;
|
59
64
|
|
60
|
-
$
|
61
|
-
$
|
62
|
-
$
|
63
|
-
$
|
64
|
-
$
|
65
|
-
$
|
66
|
-
$
|
67
|
-
$
|
68
|
-
$
|
65
|
+
$green-50: #f3faf7;
|
66
|
+
$green-100: #def7ec;
|
67
|
+
$green-200: #bcf0da;
|
68
|
+
$green-300: #84e1bc;
|
69
|
+
$green-400: #31c48d;
|
70
|
+
$green-500: #0e9f6e;
|
71
|
+
$green-600: #057a55;
|
72
|
+
$green-700: #046c4e;
|
73
|
+
$green-800: #03543f;
|
74
|
+
$green-900: #014737;
|
69
75
|
|
70
|
-
$
|
71
|
-
$
|
72
|
-
$
|
73
|
-
$
|
74
|
-
$
|
75
|
-
$
|
76
|
-
$
|
77
|
-
$
|
78
|
-
$
|
76
|
+
$teal-50: #edfafa;
|
77
|
+
$teal-100: #d5f5f6;
|
78
|
+
$teal-200: #afecef;
|
79
|
+
$teal-300: #7edce2;
|
80
|
+
$teal-400: #16bdca;
|
81
|
+
$teal-500: #0694a2;
|
82
|
+
$teal-600: #047481;
|
83
|
+
$teal-700: #036672;
|
84
|
+
$teal-800: #05505c;
|
85
|
+
$teal-900: #014451;
|
79
86
|
|
80
|
-
$
|
81
|
-
$
|
82
|
-
$
|
83
|
-
$
|
84
|
-
$
|
85
|
-
$
|
86
|
-
$
|
87
|
-
$
|
88
|
-
$
|
87
|
+
$blue-50: #ebf5ff;
|
88
|
+
$blue-100: #e1effe;
|
89
|
+
$blue-200: #c3ddfd;
|
90
|
+
$blue-300: #a4cafe;
|
91
|
+
$blue-400: #76a9fa;
|
92
|
+
$blue-500: #3f83f8;
|
93
|
+
$blue-600: #1c64f2;
|
94
|
+
$blue-700: #1a56db;
|
95
|
+
$blue-800: #1e429f;
|
96
|
+
$blue-900: #233876;
|
89
97
|
|
90
|
-
$
|
91
|
-
$
|
92
|
-
$
|
93
|
-
$
|
94
|
-
$
|
95
|
-
$
|
96
|
-
$
|
97
|
-
$
|
98
|
-
$
|
98
|
+
$indigo-50: #f0f5ff;
|
99
|
+
$indigo-100: #e5edff;
|
100
|
+
$indigo-200: #cddbfe;
|
101
|
+
$indigo-300: #b4c6fc;
|
102
|
+
$indigo-400: #8da2fb;
|
103
|
+
$indigo-500: #6875f5;
|
104
|
+
$indigo-600: #5850ec;
|
105
|
+
$indigo-700: #5145cd;
|
106
|
+
$indigo-800: #42389d;
|
107
|
+
$indigo-900: #362f78;
|
99
108
|
|
100
|
-
$
|
101
|
-
$
|
102
|
-
$
|
103
|
-
$
|
104
|
-
$
|
105
|
-
$
|
106
|
-
$
|
107
|
-
$
|
108
|
-
$
|
109
|
+
$purple-50: #f6f5ff;
|
110
|
+
$purple-100: #edebfe;
|
111
|
+
$purple-200: #dcd7fe;
|
112
|
+
$purple-300: #cabffd;
|
113
|
+
$purple-400: #ac94fa;
|
114
|
+
$purple-500: #9061f9;
|
115
|
+
$purple-600: #7e3af2;
|
116
|
+
$purple-700: #6c2bd9;
|
117
|
+
$purple-800: #5521b5;
|
118
|
+
$purple-900: #4a1d96;
|
119
|
+
|
120
|
+
$pink-50: #fdf2f8;
|
121
|
+
$pink-100: #fce8f3;
|
122
|
+
$pink-200: #fad1e8;
|
123
|
+
$pink-300: #f8b4d9;
|
124
|
+
$pink-400: #f17eb8;
|
125
|
+
$pink-500: #e74694;
|
126
|
+
$pink-600: #d61f69;
|
127
|
+
$pink-700: #bf125d;
|
128
|
+
$pink-800: #99154b;
|
129
|
+
$pink-900: #751a3d;
|
@@ -1,4 +1,3 @@
|
|
1
|
-
|
2
1
|
// *******************************************************************
|
3
2
|
// Box Shadow
|
4
3
|
// Variables for controlling the box shadow of an element.
|
@@ -12,7 +11,8 @@ $shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0,
|
|
12
11
|
$shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
|
13
12
|
$shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
|
14
13
|
$shadow-inner: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
|
15
|
-
$shadow-outline: 0 0 0 3px rgba(
|
14
|
+
$shadow-outline: 0 0 0 3px rgba(164, 202, 254, .45);
|
15
|
+
$shadow-solid: 0 0 0 2px currentColor;
|
16
16
|
$shadow-none: none;
|
17
17
|
|
18
18
|
// *******************************************************************
|
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.38",
|
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.38
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- lazaronixon
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-05-
|
11
|
+
date: 2020-05-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: autoprefixer-rails
|