@unizap/unicss 1.1.38 → 1.1.39
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/dist/index.js +80 -80
- package/package.json +1 -1
- package/test/index.html +4 -0
- package/test/style/unicss.css +39 -0
- package/unizap-unicss-1.1.38.tgz +0 -0
package/package.json
CHANGED
package/test/index.html
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
.flex { display: flex; }
|
|
2
|
+
.flex-col { flex-direction: column; }
|
|
3
|
+
.flex-row { flex-direction: row; }
|
|
4
|
+
.items-center { align-items: center; }
|
|
5
|
+
.justify-center { justify-content: center; }
|
|
6
|
+
.min-h-screen { min-height: 100vh; }
|
|
7
|
+
.py-2 { padding-block: var(--2) }
|
|
8
|
+
.text-4xl { font-size: var(--text-4xl); }
|
|
9
|
+
.font-bold { font-weight: 700; }
|
|
10
|
+
.mb-4 { margin-bottom: var(--4) }
|
|
11
|
+
.text-lg { font-size: var(--text-lg); }
|
|
12
|
+
.text-color-gray-700 { color: var(--color-gray-700) }
|
|
13
|
+
|
|
14
|
+
@keyframes spin {
|
|
15
|
+
to {
|
|
16
|
+
transform: rotate(360deg);
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
@keyframes ping {
|
|
20
|
+
75%, 100% {
|
|
21
|
+
transform: scale(2);
|
|
22
|
+
opacity: 0;
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
@keyframes pulse {
|
|
26
|
+
50% {
|
|
27
|
+
opacity: 0.5;
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
@keyframes bounce {
|
|
31
|
+
0%, 100% {
|
|
32
|
+
transform: translateY(-25%);
|
|
33
|
+
animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
|
|
34
|
+
}
|
|
35
|
+
50% {
|
|
36
|
+
transform: none;
|
|
37
|
+
animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
|
|
38
|
+
}
|
|
39
|
+
}
|
|
Binary file
|