sass-zero 0.0.48 → 0.0.49
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/variables/height.scss +16 -16
- data/app/assets/stylesheets/sass-zero/variables/transform.scss +13 -0
- data/app/assets/stylesheets/sass-zero/variables/width.scss +32 -32
- data/lib/sass/zero/version.rb +1 -1
- data/package.json +1 -1
- 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: 735d48c029ee403ce7aa12d171ff1c9e88d71be82a134e215ba40daf3fcc1c7f
|
4
|
+
data.tar.gz: b4a1f56ffca33aa9f3d00ea44d9a4fa4ff63173cb7ddb29a3cf04927c2ac4dc9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 50e61955a31df64c2afcd4ac926462630f3ff724f5e79fa28d08e83cc44703685580cd887dec5a0e904c7524281eed71c75f4d372e7cbb96e6c6061e1a503bf8
|
7
|
+
data.tar.gz: ea5215081604df3c141937e5f9fc1556d2483a8a0e4252c3e27d08f873119de1d5c386a4cbf92aebf32d3cee36f446bec3972d52504b0ea00290b2df2850be47
|
@@ -1,23 +1,23 @@
|
|
1
1
|
// *******************************************************************
|
2
2
|
// Height
|
3
3
|
// Variables for setting the height of an element
|
4
|
-
// height: $h-
|
4
|
+
// height: $h-1-2;
|
5
5
|
// *******************************************************************
|
6
|
-
$h-
|
7
|
-
$h-
|
8
|
-
$h-
|
9
|
-
$h-
|
10
|
-
$h-
|
11
|
-
$h-
|
12
|
-
$h-
|
13
|
-
$h-
|
14
|
-
$h-
|
15
|
-
$h-
|
16
|
-
$h-
|
17
|
-
$h-
|
18
|
-
$h-
|
19
|
-
$h-
|
20
|
-
$h-
|
6
|
+
$h-1-2: 50%;
|
7
|
+
$h-1-3: 33.333333%;
|
8
|
+
$h-2-3: 66.666667%;
|
9
|
+
$h-1-4: 25%;
|
10
|
+
$h-2-4: 50%;
|
11
|
+
$h-3-4: 75%;
|
12
|
+
$h-1-5: 20%;
|
13
|
+
$h-2-5: 40%;
|
14
|
+
$h-3-5: 60%;
|
15
|
+
$h-4-5: 80%;
|
16
|
+
$h-1-6: 16.666667%;
|
17
|
+
$h-2-6: 33.333333%;
|
18
|
+
$h-3-6: 50%;
|
19
|
+
$h-4-6: 66.666667%;
|
20
|
+
$h-5-6: 83.333333%;
|
21
21
|
$h-full: 100%;
|
22
22
|
$h-screen: 100vw;
|
23
23
|
$h-min: min-content;
|
@@ -29,6 +29,19 @@ $rotate-45: 45deg;
|
|
29
29
|
$rotate-90: 90deg;
|
30
30
|
$rotate-180: 180deg;
|
31
31
|
|
32
|
+
// *******************************************************************
|
33
|
+
// Translate
|
34
|
+
// Variables for translating elements with transform.
|
35
|
+
// transform: translate($translate-1-2);
|
36
|
+
// *******************************************************************
|
37
|
+
$translate-1-2: 50%;
|
38
|
+
$translate-1-3: 33.333333%;
|
39
|
+
$translate-2-3: 66.666667%;
|
40
|
+
$translate-1-4: 25%;
|
41
|
+
$translate-2-4: 50%;
|
42
|
+
$translate-3-4: 75%;
|
43
|
+
$translate-full: 100%;
|
44
|
+
|
32
45
|
// *******************************************************************
|
33
46
|
// Skew
|
34
47
|
// Variables for skewing elements with transform.
|
@@ -1,39 +1,39 @@
|
|
1
1
|
// *******************************************************************
|
2
2
|
// Width
|
3
3
|
// Variables for setting the width of an element
|
4
|
-
// width: $w-
|
4
|
+
// width: $w-1-2;
|
5
5
|
// *******************************************************************
|
6
|
-
$w-
|
7
|
-
$w-
|
8
|
-
$w-
|
9
|
-
$w-
|
10
|
-
$w-
|
11
|
-
$w-
|
12
|
-
$w-
|
13
|
-
$w-
|
14
|
-
$w-
|
15
|
-
$w-
|
16
|
-
$w-
|
17
|
-
$w-
|
18
|
-
$w-
|
19
|
-
$w-
|
20
|
-
$w-
|
21
|
-
$w-
|
22
|
-
$w-
|
23
|
-
$w-
|
24
|
-
$w-
|
25
|
-
$w-
|
26
|
-
$w-
|
27
|
-
$w-
|
28
|
-
$w-
|
29
|
-
$w-
|
30
|
-
$w-
|
31
|
-
$w-
|
32
|
-
$w-full:
|
33
|
-
$w-screen:
|
34
|
-
$w-min:
|
35
|
-
$w-max:
|
36
|
-
$w-fit:
|
6
|
+
$w-1-2: 50%;
|
7
|
+
$w-1-3: 33.333333%;
|
8
|
+
$w-2-3: 66.666667%;
|
9
|
+
$w-1-4: 25%;
|
10
|
+
$w-2-4: 50%;
|
11
|
+
$w-3-4: 75%;
|
12
|
+
$w-1-5: 20%;
|
13
|
+
$w-2-5: 40%;
|
14
|
+
$w-3-5: 60%;
|
15
|
+
$w-4-5: 80%;
|
16
|
+
$w-1-6: 16.666667%;
|
17
|
+
$w-2-6: 33.333333%;
|
18
|
+
$w-3-6: 50%;
|
19
|
+
$w-4-6: 66.666667%;
|
20
|
+
$w-5-6: 83.333333%;
|
21
|
+
$w-1-12: 8.333333%;
|
22
|
+
$w-2-12: 16.666667%;
|
23
|
+
$w-3-12: 25%;
|
24
|
+
$w-4-12: 33.333333%;
|
25
|
+
$w-5-12: 41.666667%;
|
26
|
+
$w-6-12: 50%;
|
27
|
+
$w-7-12: 58.333333%;
|
28
|
+
$w-8-12: 66.666667%;
|
29
|
+
$w-9-12: 75%;
|
30
|
+
$w-10-12: 83.333333%;
|
31
|
+
$w-11-12: 91.666667%;
|
32
|
+
$w-full: 100%;
|
33
|
+
$w-screen: 100vw;
|
34
|
+
$w-min: min-content;
|
35
|
+
$w-max: max-content;
|
36
|
+
$w-fit: fit-content;
|
37
37
|
|
38
38
|
// *******************************************************************
|
39
39
|
// Min-Width
|
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.49",
|
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",
|