sass-zero 1.2.1 → 1.2.2
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/.sass-zero-references.scss +2 -1
- data/Gemfile.lock +1 -1
- data/app/assets/stylesheets/sass-zero/_mixins.scss +0 -8
- data/app/assets/stylesheets/sass-zero/breadboard.scss +0 -5
- data/app/assets/stylesheets/sass-zero/variables/_colors.scss +15 -2
- data/app/assets/stylesheets/sass-zero/variables/_sizing.scss +1 -1
- data/lib/sass_zero/version.rb +1 -1
- data/screenshot.png +0 -0
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1a26aefa62e61441b5d4fee85a87cb5f84f46cabca144bf8f23f40005c20e9e3
|
4
|
+
data.tar.gz: caafc10d6e32d80c05a1e9aac2cb39925d080d254a3b672e1be5cf3c71d5d333
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: dc6970b49c3917c35673b82496b8a962502dac89ae655c9e1e41a28198067c8989b8fc6c50209036cfedc1e85b3dee90e0d178111fa2e0f32e1750a5076fa0d7
|
7
|
+
data.tar.gz: 0752702cc2605c8c830eb58065e096a0043bc0139e76af7c11101f575bf93a622bd3f80e9a0a5a04f552d68894eae2d346d459f14db37a8b2766637995dafc52
|
data/.sass-zero-references.scss
CHANGED
@@ -280,6 +280,8 @@ $blue-gray-700: #334155;
|
|
280
280
|
$blue-gray-800: #1e293b;
|
281
281
|
$blue-gray-900: #0f172a;
|
282
282
|
|
283
|
+
@function gradient($direction, $from, $to: transparent, $via: null) {}
|
284
|
+
|
283
285
|
// *******************************************************************
|
284
286
|
// Effects
|
285
287
|
// *******************************************************************
|
@@ -724,4 +726,3 @@ $z-50: 50;
|
|
724
726
|
@mixin outline-none {}
|
725
727
|
@mixin progress-bar {}
|
726
728
|
@mixin make-container($padding-x: $size-4) {}
|
727
|
-
@mixin gradient($direction, $from, $to: transparent, $via: null) {}
|
data/Gemfile.lock
CHANGED
@@ -38,11 +38,3 @@
|
|
38
38
|
margin-right: auto;
|
39
39
|
margin-left: auto;
|
40
40
|
}
|
41
|
-
|
42
|
-
@mixin gradient($direction, $from, $to: transparent, $via: null) {
|
43
|
-
@if $via {
|
44
|
-
background-image: linear-gradient($direction, $from, $via, $to);
|
45
|
-
} @else {
|
46
|
-
background-image: linear-gradient($direction, $from, $to);
|
47
|
-
}
|
48
|
-
}
|
@@ -41,7 +41,6 @@ html {
|
|
41
41
|
border-radius: $radius-primary;
|
42
42
|
border-width: $border;
|
43
43
|
display: inline-block;
|
44
|
-
font-weight: $font-bold;
|
45
44
|
padding: $size-2 $size-3;
|
46
45
|
cursor: pointer;
|
47
46
|
|
@@ -158,10 +157,6 @@ hr {
|
|
158
157
|
margin: $size-6 $size-0;
|
159
158
|
}
|
160
159
|
|
161
|
-
a {
|
162
|
-
font-weight: $font-bold;
|
163
|
-
}
|
164
|
-
|
165
160
|
menu, ul, ol {
|
166
161
|
padding-left: $size-10;
|
167
162
|
}
|
@@ -1,6 +1,6 @@
|
|
1
1
|
// *******************************************************************
|
2
|
-
// Default
|
3
|
-
//
|
2
|
+
// Default Color Palette
|
3
|
+
// SASS-ZERO includes an expertly-crafted default color palette
|
4
4
|
// out-of-the-box that is a great starting point if you don’t
|
5
5
|
// have your own specific branding in mind.
|
6
6
|
// *******************************************************************
|
@@ -251,3 +251,16 @@ $blue-gray-600: #475569;
|
|
251
251
|
$blue-gray-700: #334155;
|
252
252
|
$blue-gray-800: #1e293b;
|
253
253
|
$blue-gray-900: #0f172a;
|
254
|
+
|
255
|
+
// *******************************************************************
|
256
|
+
// Gradient function
|
257
|
+
// Function for creating gradient colors.
|
258
|
+
// background: gradient(to right, $indigo-500);
|
259
|
+
// *******************************************************************
|
260
|
+
@function gradient($direction, $from, $to: transparent, $via: null) {
|
261
|
+
@if $via {
|
262
|
+
@return linear-gradient($direction, $from, $via, $to);
|
263
|
+
} @else {
|
264
|
+
@return linear-gradient($direction, $from, $to);
|
265
|
+
}
|
266
|
+
}
|
@@ -1,6 +1,6 @@
|
|
1
1
|
// *******************************************************************
|
2
2
|
// Default sizing scale
|
3
|
-
// By default,
|
3
|
+
// By default, SASS-ZERO includes a generous and comprehensive numeric sizing scale.
|
4
4
|
// *******************************************************************
|
5
5
|
$size-px: 1px;
|
6
6
|
$size-0: 0;
|
data/lib/sass_zero/version.rb
CHANGED
data/screenshot.png
CHANGED
Binary file
|