@e7w/easy-routes 0.0.3 → 0.0.4
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/assets/index.css +109 -0
- package/package.json +3 -2
|
@@ -0,0 +1,109 @@
|
|
|
1
|
+
@import "tailwindcss";
|
|
2
|
+
|
|
3
|
+
/* KEYFRAMES */
|
|
4
|
+
|
|
5
|
+
@keyframes spin {
|
|
6
|
+
from {
|
|
7
|
+
transform: rotate(0);
|
|
8
|
+
}
|
|
9
|
+
to {
|
|
10
|
+
transform: rotate(359deg);
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
@keyframes spin3D {
|
|
15
|
+
from {
|
|
16
|
+
transform: rotate3d(0.5, 0.5, 0.5, 360deg);
|
|
17
|
+
}
|
|
18
|
+
to {
|
|
19
|
+
transform: rotate3d(0deg);
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
@keyframes configure-clockwise {
|
|
24
|
+
0% {
|
|
25
|
+
transform: rotate(0);
|
|
26
|
+
}
|
|
27
|
+
25% {
|
|
28
|
+
transform: rotate(90deg);
|
|
29
|
+
}
|
|
30
|
+
50% {
|
|
31
|
+
transform: rotate(180deg);
|
|
32
|
+
}
|
|
33
|
+
75% {
|
|
34
|
+
transform: rotate(270deg);
|
|
35
|
+
}
|
|
36
|
+
100% {
|
|
37
|
+
transform: rotate(360deg);
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
@keyframes configure-xclockwise {
|
|
42
|
+
0% {
|
|
43
|
+
transform: rotate(45deg);
|
|
44
|
+
}
|
|
45
|
+
25% {
|
|
46
|
+
transform: rotate(-45deg);
|
|
47
|
+
}
|
|
48
|
+
50% {
|
|
49
|
+
transform: rotate(-135deg);
|
|
50
|
+
}
|
|
51
|
+
75% {
|
|
52
|
+
transform: rotate(-225deg);
|
|
53
|
+
}
|
|
54
|
+
100% {
|
|
55
|
+
transform: rotate(-315deg);
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
@keyframes pulse {
|
|
60
|
+
from {
|
|
61
|
+
opacity: 1;
|
|
62
|
+
transform: scale(1);
|
|
63
|
+
}
|
|
64
|
+
to {
|
|
65
|
+
opacity: 0.25;
|
|
66
|
+
transform: scale(0.75);
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
/* GRID STYLING */
|
|
71
|
+
.spinner-box {
|
|
72
|
+
@apply top-0 left-0 w-full h-full flex justify-center items-center bg-transparent fixed z-50 backdrop-blur-sm;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
.leo {
|
|
76
|
+
@apply absolute flex justify-center items-center rounded-full;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
.blue-orbit {
|
|
80
|
+
@apply w-[165px] h-[165px] border-[1px] border-blue-400/70 border-solid animate-[spin3D_3s_linear_0.2s_infinite];
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
.green-orbit {
|
|
84
|
+
@apply w-[120px] h-[120px] border-[1px] border-solid border-green-400/70 animate-[spin3D_2s_linear_0s_infinite];
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
.red-orbit {
|
|
88
|
+
@apply w-[90px] h-[30px] border-[1px] border-solid border-orange-400/70 animate-[spin3D_1s_linear_0s_infinite];
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
.white-orbit {
|
|
92
|
+
@apply w-[60px] h-[60px] border-2 border-solid border-white animate-[spin3D_10s_linear_0s_infinite];
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
.w1 {
|
|
96
|
+
transform: rotate3D(1, 1, 1, 90deg);
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
.w2 {
|
|
100
|
+
transform: rotate3D(1, 2, 0.5, 90deg);
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
.w3 {
|
|
104
|
+
transform: rotate3D(0.5, 1, 2, 90deg);
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
.markdown-body {
|
|
108
|
+
background-color: var(--color-base-300);
|
|
109
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@e7w/easy-routes",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.4",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public",
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -25,6 +25,7 @@
|
|
|
25
25
|
"@types/react": "^19.2.7",
|
|
26
26
|
"@types/react-dom": "^19.2.3",
|
|
27
27
|
"@vitejs/plugin-react": "^5.1.1",
|
|
28
|
+
"copyfiles": "^2.4.1",
|
|
28
29
|
"eslint": "^9.39.1",
|
|
29
30
|
"eslint-plugin-react-hooks": "^7.0.1",
|
|
30
31
|
"eslint-plugin-react-refresh": "^0.4.24",
|
|
@@ -41,7 +42,7 @@
|
|
|
41
42
|
],
|
|
42
43
|
"license": "MIT",
|
|
43
44
|
"scripts": {
|
|
44
|
-
"build": "tsc --build",
|
|
45
|
+
"build": "tsc --build && copyfiles -u 1 src/**/*.css dist/",
|
|
45
46
|
"lint": "eslint ."
|
|
46
47
|
}
|
|
47
48
|
}
|