carfdevcss 0.0.8 → 0.0.10
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.
- package/package.json +1 -1
- package/src/index.css +42 -0
package/package.json
CHANGED
package/src/index.css
CHANGED
|
@@ -799,6 +799,13 @@
|
|
|
799
799
|
height: auto;
|
|
800
800
|
}
|
|
801
801
|
|
|
802
|
+
details > summary {
|
|
803
|
+
list-style: none;
|
|
804
|
+
}
|
|
805
|
+
details > summary::-webkit-details-marker {
|
|
806
|
+
display: none;
|
|
807
|
+
}
|
|
808
|
+
|
|
802
809
|
button,
|
|
803
810
|
input,
|
|
804
811
|
select,
|
|
@@ -2176,3 +2183,38 @@
|
|
|
2176
2183
|
@utility animate-range-* {
|
|
2177
2184
|
animation-range: --value(--tw-anim-range-*, [*]);
|
|
2178
2185
|
}
|
|
2186
|
+
|
|
2187
|
+
@utility bg-grid-* {
|
|
2188
|
+
--mixed: color-mix(
|
|
2189
|
+
in oklab,
|
|
2190
|
+
--value(--color-*, [color]) calc(--modifier(integer) * 1%),
|
|
2191
|
+
transparent
|
|
2192
|
+
);
|
|
2193
|
+
--grid-color: var(--mixed, --value(--color-*, [color]));
|
|
2194
|
+
|
|
2195
|
+
--grid-width: calc(var(--spacing) * 8);
|
|
2196
|
+
--grid-height: calc(var(--spacing) * 8);
|
|
2197
|
+
|
|
2198
|
+
background-image:
|
|
2199
|
+
linear-gradient(to right, var(--grid-color) 1px, transparent 1px),
|
|
2200
|
+
linear-gradient(to bottom, var(--grid-color) 1px, transparent 1px);
|
|
2201
|
+
|
|
2202
|
+
background-size: var(--grid-width) var(--grid-height);
|
|
2203
|
+
|
|
2204
|
+
mask-image: radial-gradient(
|
|
2205
|
+
ellipse 70% 60% at 50% 0%,
|
|
2206
|
+
#000 60%,
|
|
2207
|
+
transparent 100%
|
|
2208
|
+
);
|
|
2209
|
+
-webkit-mask-image: radial-gradient(
|
|
2210
|
+
ellipse 70% 60% at 50% 0%,
|
|
2211
|
+
#000 60%,
|
|
2212
|
+
transparent 100%
|
|
2213
|
+
);
|
|
2214
|
+
}
|
|
2215
|
+
|
|
2216
|
+
@utility grid-size-* {
|
|
2217
|
+
--width: calc(var(--spacing) * --modifier(integer));
|
|
2218
|
+
--grid-width: var(--width, calc(var(--spacing) * --value(integer)));
|
|
2219
|
+
--grid-height: calc(var(--spacing) * --value(integer));
|
|
2220
|
+
}
|