css-zero 0.0.20 → 0.0.21
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 481b6bc3c15647de31c49080ef3f7192e8b09f30aaaccf31c13ff3e9c2cfd186
|
4
|
+
data.tar.gz: 81c81d0318e3d791ce1413fb4e138c4acd93342754c3ab7638a3412bb06b3925
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e703ceb69b9a40978790111661b8ba6a4dd1e9331661d869006b409fe963ae2ac83265fbb31d83b39c147374421435146d4df1587539a9b51bf36924f455594a
|
7
|
+
data.tar.gz: '089475f52788b3fe8432f95bd54a3b433a9d94452248c4c86763839086687fef7c7fcd2912f5a050763035c76a6fd1a3b32c59592e83288a1ab39728849abfab'
|
@@ -17,10 +17,11 @@
|
|
17
17
|
--text-7xl: 4.5rem; /* 72px */
|
18
18
|
--text-8xl: 6rem; /* 96px */
|
19
19
|
--text-9xl: 8rem; /* 128px */
|
20
|
+
|
20
21
|
--text-sm-responsive: clamp(0.75rem, 2cqi, 1rem);
|
21
|
-
--text-base-responsive: clamp(1rem, 2.5cqi, 1.
|
22
|
+
--text-base-responsive: clamp(1rem, 2.5cqi, 1.25rem);
|
22
23
|
--text-lg-responsive: clamp(1.25rem, 4cqi, 1.875rem);
|
23
|
-
--text-
|
24
|
+
--text-xl-responsive: clamp(1.875rem, 5cqi, 3rem);
|
24
25
|
|
25
26
|
/****************************************************************
|
26
27
|
* Font Weight
|
@@ -31,9 +31,6 @@
|
|
31
31
|
/****************************************************************
|
32
32
|
* Text
|
33
33
|
*****************************************************************/
|
34
|
-
.antialiased { -moz-osx-font-smoothing: grayscale; -webkit-font-smoothing: antialiased; }
|
35
|
-
.subpixel-antialiased { -webkit-font-smoothing: auto; -moz-osx-font-smoothing: auto; }
|
36
|
-
|
37
34
|
.font-normal { font-weight: var(--font-normal); }
|
38
35
|
.font-medium { font-weight: var(--font-medium); }
|
39
36
|
.font-semibold { font-weight: var(--font-semibold); }
|
@@ -85,10 +82,10 @@
|
|
85
82
|
.text-8xl { font-size: var(--text-8xl); }
|
86
83
|
.text-9xl { font-size: var(--text-9xl); }
|
87
84
|
|
88
|
-
.text-sm
|
89
|
-
.text-base
|
90
|
-
.text-lg
|
91
|
-
.text-xl
|
85
|
+
.text-sm--responsive { font-size: var(--text-sm-responsive); }
|
86
|
+
.text-base--responsive { font-size: var(--text-base-responsive); }
|
87
|
+
.text-lg--responsive { font-size: var(--text-lg-responsive); }
|
88
|
+
.text-xl--responsive { font-size: var(--text-xl-responsive); }
|
92
89
|
|
93
90
|
/****************************************************************
|
94
91
|
* Background
|
data/lib/css_zero/version.rb
CHANGED