css-zero 0.0.19 → 0.0.20
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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8fdf533ce57fa9f3755bdc671350e5ae78c5fe0d036818eb67a0e4bc53381ce9
|
|
4
|
+
data.tar.gz: 8cc157fa3247ebf822da055a72c29d5af3c6c2ae32d498789112cbf9abe0bf19
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3a5d85f4aeea75765eba29e2e8cbe36e8f8d095260e9418b563af814887b312792f59303fe93f264bb9dc618b460c108cad8a968a8174c6528a99e61f5558fa1
|
|
7
|
+
data.tar.gz: 9a12fa3ce63f9301a79d23a72a0c2a443607b7b6e617ae65fc6e01519de6f911fe50c2588fc42ad8f450ca77a68f3ae99eb078209a82d5839ee8e32c68391841
|
|
@@ -17,6 +17,10 @@
|
|
|
17
17
|
--text-7xl: 4.5rem; /* 72px */
|
|
18
18
|
--text-8xl: 6rem; /* 96px */
|
|
19
19
|
--text-9xl: 8rem; /* 128px */
|
|
20
|
+
--text-sm-responsive: clamp(0.75rem, 2cqi, 1rem);
|
|
21
|
+
--text-base-responsive: clamp(1rem, 2.5cqi, 1.5rem);
|
|
22
|
+
--text-lg-responsive: clamp(1.25rem, 4cqi, 1.875rem);
|
|
23
|
+
--text-lg-responsive: clamp(1.875rem, 5cqi, 3rem);
|
|
20
24
|
|
|
21
25
|
/****************************************************************
|
|
22
26
|
* Font Weight
|
|
@@ -31,6 +31,9 @@
|
|
|
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
|
+
|
|
34
37
|
.font-normal { font-weight: var(--font-normal); }
|
|
35
38
|
.font-medium { font-weight: var(--font-medium); }
|
|
36
39
|
.font-semibold { font-weight: var(--font-semibold); }
|
|
@@ -82,6 +85,11 @@
|
|
|
82
85
|
.text-8xl { font-size: var(--text-8xl); }
|
|
83
86
|
.text-9xl { font-size: var(--text-9xl); }
|
|
84
87
|
|
|
88
|
+
.text-sm-responsive { font-size: var(--text-sm-responsive); }
|
|
89
|
+
.text-base-responsive { font-size: var(--text-base-responsive); }
|
|
90
|
+
.text-lg-responsive { font-size: var(--text-lg-responsive); }
|
|
91
|
+
.text-xl-responsive { font-size: var(--text-xl-responsive); }
|
|
92
|
+
|
|
85
93
|
/****************************************************************
|
|
86
94
|
* Background
|
|
87
95
|
*****************************************************************/
|
|
@@ -130,13 +138,13 @@
|
|
|
130
138
|
* Shadow
|
|
131
139
|
*****************************************************************/
|
|
132
140
|
.shadow-none { box-shadow: none; }
|
|
133
|
-
.shadow-xs { box-shadow: var(--shadow-xs); }
|
|
134
141
|
.shadow-sm { box-shadow: var(--shadow-sm); }
|
|
135
142
|
.shadow { box-shadow: var(--shadow); }
|
|
136
143
|
.shadow-md { box-shadow: var(--shadow-md); }
|
|
137
144
|
.shadow-lg { box-shadow: var(--shadow-lg); }
|
|
138
145
|
.shadow-xl { box-shadow: var(--shadow-xl); }
|
|
139
146
|
.shadow-2xl { box-shadow: var(--shadow-2xl); }
|
|
147
|
+
.shadow-inner { box-shadow: var(--shadow-inner); }
|
|
140
148
|
|
|
141
149
|
/****************************************************************
|
|
142
150
|
* Layout
|
data/lib/css_zero/version.rb
CHANGED
|
@@ -1,8 +1,4 @@
|
|
|
1
1
|
:where(.prose) {
|
|
2
|
-
-moz-osx-font-smoothing: grayscale;
|
|
3
|
-
-webkit-font-smoothing: antialiased;
|
|
4
|
-
font-size: clamp(1rem, 2.5cqi, 1.4rem);
|
|
5
|
-
|
|
6
2
|
:is(h1, h2, h3, h4, h5, h6) {
|
|
7
3
|
font-weight: 800;
|
|
8
4
|
hyphens: auto;
|
|
@@ -128,7 +124,6 @@
|
|
|
128
124
|
}
|
|
129
125
|
|
|
130
126
|
a {
|
|
131
|
-
color: var(--blue-700);
|
|
132
127
|
text-decoration: underline;
|
|
133
128
|
text-decoration-skip-ink: auto;
|
|
134
129
|
}
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: css-zero
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.20
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Lázaro Nixon
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2024-07-
|
|
11
|
+
date: 2024-07-17 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description:
|
|
14
14
|
email: lazaronixon@hotmail.com
|