nextia 3.0.2 → 4.0.0
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/README.md +2 -7
- package/create-nextia/LICENSE +21 -0
- package/create-nextia/README.md +17 -0
- package/create-nextia/package.json +38 -0
- package/{src → create-nextia/src}/bin.js +76 -22
- package/create-nextia/templates/nextjs/README.md +34 -0
- package/create-nextia/templates/nextjs/_env.development +4 -0
- package/create-nextia/templates/nextjs/_env.production +3 -0
- package/create-nextia/templates/nextjs/_env.test +3 -0
- package/create-nextia/templates/nextjs/_gitignore +9 -0
- package/create-nextia/templates/nextjs/jsconfig.json +5 -0
- package/create-nextia/templates/nextjs/next.config.js +18 -0
- package/create-nextia/templates/nextjs/package.json +39 -0
- package/create-nextia/templates/nextjs/public/logo.svg +865 -0
- package/create-nextia/templates/nextjs/src/app/counter/functions.js +6 -0
- package/create-nextia/templates/nextjs/src/app/counter/page.js +42 -0
- package/create-nextia/templates/nextjs/src/app/counter/style.css +2 -0
- package/create-nextia/templates/nextjs/src/app/env/functions.js +4 -0
- package/create-nextia/templates/nextjs/src/app/env/page.js +24 -0
- package/create-nextia/templates/nextjs/src/app/env/style.css +1 -0
- package/create-nextia/templates/nextjs/src/app/functions.js +33 -0
- package/create-nextia/templates/nextjs/src/app/home/functions.js +43 -0
- package/create-nextia/templates/nextjs/src/app/home/page.js +184 -0
- package/create-nextia/templates/nextjs/src/app/home/style.css +51 -0
- package/create-nextia/templates/nextjs/src/app/images/functions.js +4 -0
- package/create-nextia/templates/nextjs/src/app/images/page.jsx +26 -0
- package/create-nextia/templates/nextjs/src/app/images/style.css +10 -0
- package/create-nextia/templates/nextjs/src/app/layout.js +109 -0
- package/create-nextia/templates/nextjs/src/app/media-query/functions.js +4 -0
- package/create-nextia/templates/nextjs/src/app/media-query/page.js +33 -0
- package/create-nextia/templates/nextjs/src/app/media-query/style.css +38 -0
- package/create-nextia/templates/nextjs/src/app/mockapi/functions.js +71 -0
- package/create-nextia/templates/nextjs/src/app/mockapi/page.js +95 -0
- package/create-nextia/templates/nextjs/src/app/mockapi/style.css +57 -0
- package/create-nextia/templates/nextjs/src/app/my-context/functions.js +11 -0
- package/create-nextia/templates/nextjs/src/app/my-context/page.js +27 -0
- package/create-nextia/templates/nextjs/src/app/my-context/style.css +1 -0
- package/create-nextia/templates/nextjs/src/app/not-found.js +7 -0
- package/create-nextia/templates/nextjs/src/app/page.js +3 -0
- package/create-nextia/templates/nextjs/src/app/search-params/functions.js +4 -0
- package/create-nextia/templates/nextjs/src/app/search-params/page.js +49 -0
- package/create-nextia/templates/nextjs/src/app/search-params/style.css +1 -0
- package/create-nextia/templates/nextjs/src/app/subpage/hello/functions.js +4 -0
- package/create-nextia/templates/nextjs/src/app/subpage/hello/page.js +16 -0
- package/create-nextia/templates/nextjs/src/app/subpage/hello/style.css +1 -0
- package/create-nextia/templates/nextjs/src/app/translate/functions.js +4 -0
- package/create-nextia/templates/nextjs/src/app/translate/page.js +35 -0
- package/create-nextia/templates/nextjs/src/app/translate/style.css +1 -0
- package/create-nextia/templates/nextjs/src/assets/fonts/Roboto-Regular.ttf +0 -0
- package/create-nextia/templates/nextjs/src/assets/i18n/index.js +26 -0
- package/create-nextia/templates/nextjs/src/assets/icon/icons.svg +498 -0
- package/create-nextia/templates/nextjs/src/assets/img/image.jpg +0 -0
- package/create-nextia/templates/nextjs/src/assets/theme/animations.css +89 -0
- package/create-nextia/templates/nextjs/src/assets/theme/index.css +38 -0
- package/create-nextia/templates/nextjs/src/assets/theme/util.css +71 -0
- package/create-nextia/templates/nextjs/src/components/Counter/index.js +37 -0
- package/create-nextia/templates/nextjs/src/components/Counter/style.css +5 -0
- package/create-nextia/templates/nextjs/src/components/Icon/index.jsx +55 -0
- package/create-nextia/templates/nextjs/src/components/Link/index.jsx +10 -0
- package/create-nextia/templates/nextjs/src/components/Translation/index.jsx +12 -0
- package/create-nextia/templates/nextjs/src/components/Translation/style.css +1 -0
- package/create-nextia/templates/nextjs/src/components/index.js +6 -0
- package/create-nextia/templates/nextjs/src/containers/I18n/index.jsx +23 -0
- package/create-nextia/templates/nextjs/src/containers/Translate/index.jsx +30 -0
- package/create-nextia/templates/nextjs/src/containers/Translate/style.css +2 -0
- package/create-nextia/templates/nextjs/src/containers/index.js +7 -0
- package/create-nextia/templates/nextjs/src/services/api.js +10 -0
- package/create-nextia/templates/nextjs/src/services/http.js +135 -0
- package/create-nextia/templates/nextjs/src/utils/hooks.js +26 -0
- package/create-nextia/templates/nextjs/src/utils/index.js +21 -0
- package/create-nextia/templates/nextjs/vitest.config.js +38 -0
- package/create-nextia/templates/vitejs/README.md +33 -0
- package/create-nextia/templates/vitejs/_env.development +4 -0
- package/create-nextia/templates/vitejs/_env.production +2 -0
- package/create-nextia/templates/vitejs/_env.test +2 -0
- package/create-nextia/templates/vitejs/_gitignore +6 -0
- package/create-nextia/templates/vitejs/package.json +39 -0
- package/create-nextia/templates/vitejs/public/error.html +14 -0
- package/create-nextia/templates/vitejs/public/logo.svg +865 -0
- package/create-nextia/templates/vitejs/src/assets/fonts/Roboto-Regular.ttf +0 -0
- package/create-nextia/templates/vitejs/src/assets/i18n/index.js +26 -0
- package/create-nextia/templates/vitejs/src/assets/icon/icons.svg +498 -0
- package/create-nextia/templates/vitejs/src/assets/img/image.jpg +0 -0
- package/create-nextia/templates/vitejs/src/assets/theme/animations.css +89 -0
- package/create-nextia/templates/vitejs/src/assets/theme/index.css +38 -0
- package/create-nextia/templates/vitejs/src/assets/theme/util.css +71 -0
- package/create-nextia/templates/vitejs/src/components/Counter/index.jsx +38 -0
- package/create-nextia/templates/vitejs/src/components/Counter/style.css +5 -0
- package/create-nextia/templates/vitejs/src/components/Icon/index.jsx +51 -0
- package/create-nextia/templates/vitejs/src/components/Link/index.jsx +12 -0
- package/create-nextia/templates/vitejs/src/components/Translation/index.jsx +12 -0
- package/create-nextia/templates/vitejs/src/components/Translation/style.css +1 -0
- package/create-nextia/templates/vitejs/src/components/index.js +6 -0
- package/create-nextia/templates/vitejs/src/containers/I18n/index.jsx +23 -0
- package/create-nextia/templates/vitejs/src/containers/Translate/index.jsx +30 -0
- package/create-nextia/templates/vitejs/src/containers/Translate/style.css +2 -0
- package/create-nextia/templates/vitejs/src/containers/index.js +7 -0
- package/create-nextia/templates/vitejs/src/index.html +18 -0
- package/create-nextia/templates/vitejs/src/index.jsx +9 -0
- package/create-nextia/templates/vitejs/src/pages/counter/functions.js +6 -0
- package/create-nextia/templates/vitejs/src/pages/counter/index.jsx +39 -0
- package/create-nextia/templates/vitejs/src/pages/counter/style.css +1 -0
- package/create-nextia/templates/vitejs/src/pages/env/functions.js +4 -0
- package/create-nextia/templates/vitejs/src/pages/env/index.jsx +28 -0
- package/create-nextia/templates/vitejs/src/pages/env/style.css +1 -0
- package/create-nextia/templates/vitejs/src/pages/functions.js +27 -0
- package/create-nextia/templates/vitejs/src/pages/home/functions.js +43 -0
- package/create-nextia/templates/vitejs/src/pages/home/index.jsx +182 -0
- package/create-nextia/templates/vitejs/src/pages/home/style.css +51 -0
- package/create-nextia/templates/vitejs/src/pages/http/not-found/index.jsx +17 -0
- package/create-nextia/templates/vitejs/src/pages/http/not-found/style.css +1 -0
- package/create-nextia/templates/vitejs/src/pages/images/functions.js +4 -0
- package/create-nextia/templates/vitejs/src/pages/images/index.jsx +23 -0
- package/create-nextia/templates/vitejs/src/pages/images/style.css +9 -0
- package/create-nextia/templates/vitejs/src/pages/index.jsx +104 -0
- package/create-nextia/templates/vitejs/src/pages/media-query/functions.js +4 -0
- package/create-nextia/templates/vitejs/src/pages/media-query/index.jsx +30 -0
- package/create-nextia/templates/vitejs/src/pages/media-query/style.css +38 -0
- package/create-nextia/templates/vitejs/src/pages/mockapi/functions.js +71 -0
- package/create-nextia/templates/vitejs/src/pages/mockapi/index.jsx +98 -0
- package/create-nextia/templates/vitejs/src/pages/mockapi/style.css +57 -0
- package/create-nextia/templates/vitejs/src/pages/my-context/functions.js +8 -0
- package/create-nextia/templates/vitejs/src/pages/my-context/index.jsx +27 -0
- package/create-nextia/templates/vitejs/src/pages/my-context/style.css +1 -0
- package/create-nextia/templates/vitejs/src/pages/search-params/functions.js +4 -0
- package/create-nextia/templates/vitejs/src/pages/search-params/index.jsx +42 -0
- package/create-nextia/templates/vitejs/src/pages/search-params/style.css +1 -0
- package/create-nextia/templates/vitejs/src/pages/subpage/hello/functions.js +3 -0
- package/create-nextia/templates/vitejs/src/pages/subpage/hello/index.jsx +14 -0
- package/create-nextia/templates/vitejs/src/pages/subpage/hello/style.css +1 -0
- package/create-nextia/templates/vitejs/src/pages/translate/functions.js +5 -0
- package/create-nextia/templates/vitejs/src/pages/translate/index.jsx +32 -0
- package/create-nextia/templates/vitejs/src/pages/translate/style.css +12 -0
- package/create-nextia/templates/vitejs/src/services/api.js +9 -0
- package/create-nextia/templates/vitejs/src/services/http.js +135 -0
- package/create-nextia/templates/vitejs/src/utils/hooks.js +44 -0
- package/create-nextia/templates/vitejs/src/utils/index.js +25 -0
- package/create-nextia/templates/vitejs/vite.config.js +100 -0
- package/package.json +3 -8
|
@@ -0,0 +1,498 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
width="256"
|
|
4
|
+
height="256"
|
|
5
|
+
viewBox="0 0 48 48"
|
|
6
|
+
fill="none"
|
|
7
|
+
stroke="currentColor"
|
|
8
|
+
stroke-width="1"
|
|
9
|
+
stroke-linecap="round"
|
|
10
|
+
stroke-linejoin="round"
|
|
11
|
+
version="1.1"
|
|
12
|
+
id="icons"
|
|
13
|
+
sodipodi:docname="icons.svg"
|
|
14
|
+
inkscape:version="1.4.2 (ebf0e940d0, 2025-05-08)"
|
|
15
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
16
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
17
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
18
|
+
xmlns:svg="http://www.w3.org/2000/svg">
|
|
19
|
+
<defs
|
|
20
|
+
id="defs" />
|
|
21
|
+
<sodipodi:namedview
|
|
22
|
+
id="namedview"
|
|
23
|
+
pagecolor="#505050"
|
|
24
|
+
bordercolor="#ffffff"
|
|
25
|
+
borderopacity="1"
|
|
26
|
+
inkscape:showpageshadow="0"
|
|
27
|
+
inkscape:pageopacity="0"
|
|
28
|
+
inkscape:pagecheckerboard="1"
|
|
29
|
+
inkscape:deskcolor="#505050"
|
|
30
|
+
showgrid="false"
|
|
31
|
+
showguides="true"
|
|
32
|
+
inkscape:zoom="1.3"
|
|
33
|
+
inkscape:cx="1.3e+02"
|
|
34
|
+
inkscape:cy="1.1e+02"
|
|
35
|
+
inkscape:current-layer="icons" />
|
|
36
|
+
<g
|
|
37
|
+
id="globe"
|
|
38
|
+
style="display:none"
|
|
39
|
+
sodipodi:insensitive="true">
|
|
40
|
+
<circle
|
|
41
|
+
cx="12"
|
|
42
|
+
cy="12"
|
|
43
|
+
r="10"
|
|
44
|
+
id="circle1" />
|
|
45
|
+
<line
|
|
46
|
+
x1="2"
|
|
47
|
+
y1="12"
|
|
48
|
+
x2="22"
|
|
49
|
+
y2="12"
|
|
50
|
+
id="line1" />
|
|
51
|
+
<path
|
|
52
|
+
d="M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z"
|
|
53
|
+
id="path1" />
|
|
54
|
+
</g>
|
|
55
|
+
<g
|
|
56
|
+
id="camera"
|
|
57
|
+
style="display:none"
|
|
58
|
+
sodipodi:insensitive="true">
|
|
59
|
+
<path
|
|
60
|
+
d="M23 19a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h4l2-3h6l2 3h4a2 2 0 0 1 2 2z"
|
|
61
|
+
id="path2" />
|
|
62
|
+
<circle
|
|
63
|
+
cx="12"
|
|
64
|
+
cy="13"
|
|
65
|
+
r="4"
|
|
66
|
+
id="circle2" />
|
|
67
|
+
</g>
|
|
68
|
+
<g
|
|
69
|
+
id="caret-down"
|
|
70
|
+
style="display:none"
|
|
71
|
+
sodipodi:insensitive="true">
|
|
72
|
+
<path
|
|
73
|
+
d="M 16.924437,11.676179 H 6.8175139 l 5.0534661,5.053479 z"
|
|
74
|
+
fill="currentColor"
|
|
75
|
+
id="path3" />
|
|
76
|
+
</g>
|
|
77
|
+
<g
|
|
78
|
+
id="caret-up"
|
|
79
|
+
style="display:none"
|
|
80
|
+
sodipodi:insensitive="true">
|
|
81
|
+
<path
|
|
82
|
+
d="M 16.92445,16.729618 H 6.8174614 l 5.0534836,-5.053534 z"
|
|
83
|
+
fill="currentColor"
|
|
84
|
+
id="path4" />
|
|
85
|
+
</g>
|
|
86
|
+
<g
|
|
87
|
+
id="check"
|
|
88
|
+
style="display:none"
|
|
89
|
+
sodipodi:insensitive="true">
|
|
90
|
+
<path
|
|
91
|
+
d="M 11,13 7.8,11 6.3,12 11,16 18,9.2 16,7.8 Z"
|
|
92
|
+
fill="currentColor"
|
|
93
|
+
id="path5" />
|
|
94
|
+
</g>
|
|
95
|
+
<g
|
|
96
|
+
id="chevron-arrow-left"
|
|
97
|
+
style="display:none"
|
|
98
|
+
sodipodi:insensitive="true">
|
|
99
|
+
<path
|
|
100
|
+
d="M16.2426 6.34317L14.8284 4.92896L7.75739 12L14.8285 19.0711L16.2427 17.6569L10.5858 12L16.2426 6.34317Z"
|
|
101
|
+
fill="currentColor"
|
|
102
|
+
id="path6" />
|
|
103
|
+
</g>
|
|
104
|
+
<g
|
|
105
|
+
id="chevron-arrow-right"
|
|
106
|
+
style="display:none"
|
|
107
|
+
sodipodi:insensitive="true">
|
|
108
|
+
<path
|
|
109
|
+
d="M10.5858 6.34317L12 4.92896L19.0711 12L12 19.0711L10.5858 17.6569L16.2427 12L10.5858 6.34317Z"
|
|
110
|
+
fill="currentColor"
|
|
111
|
+
id="path7" />
|
|
112
|
+
</g>
|
|
113
|
+
<g
|
|
114
|
+
id="circle"
|
|
115
|
+
style="display:none"
|
|
116
|
+
sodipodi:insensitive="true">
|
|
117
|
+
<circle
|
|
118
|
+
cx="13"
|
|
119
|
+
cy="13"
|
|
120
|
+
r="5"
|
|
121
|
+
id="circle7" />
|
|
122
|
+
</g>
|
|
123
|
+
<g
|
|
124
|
+
id="current-location"
|
|
125
|
+
style="display:none"
|
|
126
|
+
sodipodi:insensitive="true">
|
|
127
|
+
<circle
|
|
128
|
+
cx="12.218931"
|
|
129
|
+
cy="11.8985"
|
|
130
|
+
r="8"
|
|
131
|
+
id="circle8" />
|
|
132
|
+
<circle
|
|
133
|
+
cx="12.218931"
|
|
134
|
+
cy="11.8985"
|
|
135
|
+
r="3"
|
|
136
|
+
fill="currentColor"
|
|
137
|
+
id="circle9" />
|
|
138
|
+
<rect
|
|
139
|
+
fill="currentColor"
|
|
140
|
+
width="1.2"
|
|
141
|
+
height="0.5"
|
|
142
|
+
x="21"
|
|
143
|
+
y="12"
|
|
144
|
+
id="rect9" />
|
|
145
|
+
<rect
|
|
146
|
+
fill="currentColor"
|
|
147
|
+
width="1.2"
|
|
148
|
+
height="0.5"
|
|
149
|
+
x="2"
|
|
150
|
+
y="12"
|
|
151
|
+
id="rect10" />
|
|
152
|
+
<rect
|
|
153
|
+
fill="currentColor"
|
|
154
|
+
width="0.5"
|
|
155
|
+
height="1.2"
|
|
156
|
+
x="12"
|
|
157
|
+
y="2"
|
|
158
|
+
id="rect11" />
|
|
159
|
+
<rect
|
|
160
|
+
fill="currentColor"
|
|
161
|
+
width="0.5"
|
|
162
|
+
height="1.2"
|
|
163
|
+
x="12"
|
|
164
|
+
y="20.5"
|
|
165
|
+
id="rect12" />
|
|
166
|
+
</g>
|
|
167
|
+
<g
|
|
168
|
+
id="g12"
|
|
169
|
+
style="display:none"
|
|
170
|
+
sodipodi:insensitive="true">
|
|
171
|
+
<circle
|
|
172
|
+
cx="12"
|
|
173
|
+
cy="12"
|
|
174
|
+
r="10"
|
|
175
|
+
id="circle12" />
|
|
176
|
+
<line
|
|
177
|
+
x1="2"
|
|
178
|
+
y1="12"
|
|
179
|
+
x2="22"
|
|
180
|
+
y2="12"
|
|
181
|
+
id="line12" />
|
|
182
|
+
<path
|
|
183
|
+
d="M 12,2 A 15,15 0 0 1 16,12 15,15 0 0 1 12,22 15,15 0 0 1 8,12 15,15 0 0 1 12,2 Z"
|
|
184
|
+
id="path12" />
|
|
185
|
+
</g>
|
|
186
|
+
<g
|
|
187
|
+
id="help"
|
|
188
|
+
style="display:none"
|
|
189
|
+
sodipodi:insensitive="true">
|
|
190
|
+
<circle
|
|
191
|
+
cx="12"
|
|
192
|
+
cy="12"
|
|
193
|
+
r="10"
|
|
194
|
+
id="circle13" />
|
|
195
|
+
<path
|
|
196
|
+
d="M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3"
|
|
197
|
+
id="path13" />
|
|
198
|
+
<line
|
|
199
|
+
x1="12"
|
|
200
|
+
y1="17"
|
|
201
|
+
x2="12.01"
|
|
202
|
+
y2="17"
|
|
203
|
+
id="line13" />
|
|
204
|
+
</g>
|
|
205
|
+
<g
|
|
206
|
+
id="layer"
|
|
207
|
+
style="display:none"
|
|
208
|
+
sodipodi:insensitive="true">
|
|
209
|
+
<polygon
|
|
210
|
+
points="12 2 2 7 12 12 22 7 12 2"
|
|
211
|
+
id="polygon13" />
|
|
212
|
+
<polyline
|
|
213
|
+
points="2 17 12 22 22 17"
|
|
214
|
+
id="polyline13" />
|
|
215
|
+
<polyline
|
|
216
|
+
points="2 12 12 17 22 12"
|
|
217
|
+
id="polyline14" />
|
|
218
|
+
</g>
|
|
219
|
+
<g
|
|
220
|
+
id="log-in"
|
|
221
|
+
style="display:none"
|
|
222
|
+
sodipodi:insensitive="true">
|
|
223
|
+
<path
|
|
224
|
+
d="M15 3h4a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-4"
|
|
225
|
+
id="path14" />
|
|
226
|
+
<polyline
|
|
227
|
+
points="10 17 15 12 10 7"
|
|
228
|
+
id="polyline15" />
|
|
229
|
+
<line
|
|
230
|
+
x1="15"
|
|
231
|
+
y1="12"
|
|
232
|
+
x2="3"
|
|
233
|
+
y2="12"
|
|
234
|
+
id="line15" />
|
|
235
|
+
</g>
|
|
236
|
+
<g
|
|
237
|
+
id="maximize"
|
|
238
|
+
style="display:none"
|
|
239
|
+
sodipodi:insensitive="true">
|
|
240
|
+
<path
|
|
241
|
+
d="M8 3H5a2 2 0 0 0-2 2v3m18 0V5a2 2 0 0 0-2-2h-3m0 18h3a2 2 0 0 0 2-2v-3M3 16v3a2 2 0 0 0 2 2h3"
|
|
242
|
+
id="path15" />
|
|
243
|
+
</g>
|
|
244
|
+
<g
|
|
245
|
+
id="menu"
|
|
246
|
+
style="display:none"
|
|
247
|
+
sodipodi:insensitive="true">
|
|
248
|
+
<line
|
|
249
|
+
x1="3"
|
|
250
|
+
y1="12"
|
|
251
|
+
x2="21"
|
|
252
|
+
y2="12"
|
|
253
|
+
id="line16" />
|
|
254
|
+
<line
|
|
255
|
+
x1="3"
|
|
256
|
+
y1="6"
|
|
257
|
+
x2="21"
|
|
258
|
+
y2="6"
|
|
259
|
+
id="line17" />
|
|
260
|
+
<line
|
|
261
|
+
x1="3"
|
|
262
|
+
y1="18"
|
|
263
|
+
x2="21"
|
|
264
|
+
y2="18"
|
|
265
|
+
id="line18" />
|
|
266
|
+
</g>
|
|
267
|
+
<g
|
|
268
|
+
id="minus"
|
|
269
|
+
style="display:none"
|
|
270
|
+
sodipodi:insensitive="true">
|
|
271
|
+
<line
|
|
272
|
+
x1="5"
|
|
273
|
+
y1="12"
|
|
274
|
+
x2="19"
|
|
275
|
+
y2="12"
|
|
276
|
+
id="line19" />
|
|
277
|
+
</g>
|
|
278
|
+
<g
|
|
279
|
+
id="plus-circle"
|
|
280
|
+
style="display:none"
|
|
281
|
+
sodipodi:insensitive="true">
|
|
282
|
+
<circle
|
|
283
|
+
cx="12"
|
|
284
|
+
cy="12"
|
|
285
|
+
r="10"
|
|
286
|
+
id="circle19" />
|
|
287
|
+
<line
|
|
288
|
+
x1="12"
|
|
289
|
+
y1="8"
|
|
290
|
+
x2="12"
|
|
291
|
+
y2="16"
|
|
292
|
+
id="line20" />
|
|
293
|
+
<line
|
|
294
|
+
x1="8"
|
|
295
|
+
y1="12"
|
|
296
|
+
x2="16"
|
|
297
|
+
y2="12"
|
|
298
|
+
id="line21" />
|
|
299
|
+
</g>
|
|
300
|
+
<g
|
|
301
|
+
id="plus-square"
|
|
302
|
+
style="display:none"
|
|
303
|
+
sodipodi:insensitive="true">
|
|
304
|
+
<rect
|
|
305
|
+
x="3"
|
|
306
|
+
y="3"
|
|
307
|
+
width="18"
|
|
308
|
+
height="18"
|
|
309
|
+
rx="2"
|
|
310
|
+
ry="2"
|
|
311
|
+
id="rect21" />
|
|
312
|
+
<line
|
|
313
|
+
x1="12"
|
|
314
|
+
y1="8"
|
|
315
|
+
x2="12"
|
|
316
|
+
y2="16"
|
|
317
|
+
id="line22" />
|
|
318
|
+
<line
|
|
319
|
+
x1="8"
|
|
320
|
+
y1="12"
|
|
321
|
+
x2="16"
|
|
322
|
+
y2="12"
|
|
323
|
+
id="line23" />
|
|
324
|
+
</g>
|
|
325
|
+
<g
|
|
326
|
+
id="plus"
|
|
327
|
+
style="display:none"
|
|
328
|
+
sodipodi:insensitive="true">
|
|
329
|
+
<line
|
|
330
|
+
x1="12"
|
|
331
|
+
y1="5"
|
|
332
|
+
x2="12"
|
|
333
|
+
y2="19"
|
|
334
|
+
id="line24" />
|
|
335
|
+
<line
|
|
336
|
+
x1="5"
|
|
337
|
+
y1="12"
|
|
338
|
+
x2="19"
|
|
339
|
+
y2="12"
|
|
340
|
+
id="line25" />
|
|
341
|
+
</g>
|
|
342
|
+
<g
|
|
343
|
+
id="point"
|
|
344
|
+
style="display:none"
|
|
345
|
+
sodipodi:insensitive="true">
|
|
346
|
+
<circle
|
|
347
|
+
cx="12"
|
|
348
|
+
cy="12"
|
|
349
|
+
r="5"
|
|
350
|
+
fill="currentColor"
|
|
351
|
+
id="circle25" />
|
|
352
|
+
</g>
|
|
353
|
+
<g
|
|
354
|
+
id="power-off"
|
|
355
|
+
style="display:none"
|
|
356
|
+
sodipodi:insensitive="true">
|
|
357
|
+
<path
|
|
358
|
+
d="M18.36 6.64a9 9 0 1 1-12.73 0"
|
|
359
|
+
id="path25" />
|
|
360
|
+
<line
|
|
361
|
+
x1="12"
|
|
362
|
+
y1="2"
|
|
363
|
+
x2="12"
|
|
364
|
+
y2="12"
|
|
365
|
+
id="line26" />
|
|
366
|
+
</g>
|
|
367
|
+
<g
|
|
368
|
+
id="rotate"
|
|
369
|
+
style="display:none"
|
|
370
|
+
sodipodi:insensitive="true">
|
|
371
|
+
<polyline
|
|
372
|
+
points="23 4 23 10 17 10"
|
|
373
|
+
id="polyline26" />
|
|
374
|
+
<path
|
|
375
|
+
d="M20.49 15a9 9 0 1 1-2.12-9.36L23 10"
|
|
376
|
+
id="path26" />
|
|
377
|
+
</g>
|
|
378
|
+
<g
|
|
379
|
+
id="share"
|
|
380
|
+
style="display:none"
|
|
381
|
+
sodipodi:insensitive="true">
|
|
382
|
+
<circle
|
|
383
|
+
cx="18"
|
|
384
|
+
cy="5"
|
|
385
|
+
r="3"
|
|
386
|
+
id="circle26" />
|
|
387
|
+
<circle
|
|
388
|
+
cx="6"
|
|
389
|
+
cy="12"
|
|
390
|
+
r="3"
|
|
391
|
+
id="circle27" />
|
|
392
|
+
<circle
|
|
393
|
+
cx="18"
|
|
394
|
+
cy="19"
|
|
395
|
+
r="3"
|
|
396
|
+
id="circle28" />
|
|
397
|
+
<line
|
|
398
|
+
x1="8.59"
|
|
399
|
+
y1="13.51"
|
|
400
|
+
x2="15.42"
|
|
401
|
+
y2="17.49"
|
|
402
|
+
id="line28" />
|
|
403
|
+
<line
|
|
404
|
+
x1="15.41"
|
|
405
|
+
y1="6.51"
|
|
406
|
+
x2="8.59"
|
|
407
|
+
y2="10.49"
|
|
408
|
+
id="line29" />
|
|
409
|
+
</g>
|
|
410
|
+
<g
|
|
411
|
+
id="trash"
|
|
412
|
+
style="display:none"
|
|
413
|
+
sodipodi:insensitive="true">
|
|
414
|
+
<polyline
|
|
415
|
+
points="3 6 5 6 21 6"
|
|
416
|
+
id="polyline29" />
|
|
417
|
+
<path
|
|
418
|
+
d="M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6m3 0V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2"
|
|
419
|
+
id="path29" />
|
|
420
|
+
<line
|
|
421
|
+
x1="10"
|
|
422
|
+
y1="11"
|
|
423
|
+
x2="10"
|
|
424
|
+
y2="17"
|
|
425
|
+
id="line30" />
|
|
426
|
+
<line
|
|
427
|
+
x1="14"
|
|
428
|
+
y1="11"
|
|
429
|
+
x2="14"
|
|
430
|
+
y2="17"
|
|
431
|
+
id="line31" />
|
|
432
|
+
</g>
|
|
433
|
+
<g
|
|
434
|
+
id="upload"
|
|
435
|
+
style="display:none"
|
|
436
|
+
sodipodi:insensitive="true">
|
|
437
|
+
<path
|
|
438
|
+
d="M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4"
|
|
439
|
+
id="path31" />
|
|
440
|
+
<polyline
|
|
441
|
+
points="17 8 12 3 7 8"
|
|
442
|
+
id="polyline31" />
|
|
443
|
+
<line
|
|
444
|
+
x1="12"
|
|
445
|
+
y1="3"
|
|
446
|
+
x2="12"
|
|
447
|
+
y2="15"
|
|
448
|
+
id="line32" />
|
|
449
|
+
</g>
|
|
450
|
+
<g
|
|
451
|
+
id="user"
|
|
452
|
+
style="display:none"
|
|
453
|
+
sodipodi:insensitive="true">
|
|
454
|
+
<path
|
|
455
|
+
d="M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2"
|
|
456
|
+
id="path32" />
|
|
457
|
+
<circle
|
|
458
|
+
cx="12"
|
|
459
|
+
cy="7"
|
|
460
|
+
r="4"
|
|
461
|
+
id="circle32" />
|
|
462
|
+
</g>
|
|
463
|
+
<g
|
|
464
|
+
id="users"
|
|
465
|
+
style="display:none"
|
|
466
|
+
sodipodi:insensitive="true">
|
|
467
|
+
<path
|
|
468
|
+
d="M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2"
|
|
469
|
+
id="path33" />
|
|
470
|
+
<circle
|
|
471
|
+
cx="9"
|
|
472
|
+
cy="7"
|
|
473
|
+
r="4"
|
|
474
|
+
id="circle33" />
|
|
475
|
+
<path
|
|
476
|
+
d="M23 21v-2a4 4 0 0 0-3-3.87"
|
|
477
|
+
id="path34" />
|
|
478
|
+
<path
|
|
479
|
+
d="M16 3.13a4 4 0 0 1 0 7.75"
|
|
480
|
+
id="path35" />
|
|
481
|
+
</g>
|
|
482
|
+
<g
|
|
483
|
+
id="video"
|
|
484
|
+
style="display:none"
|
|
485
|
+
sodipodi:insensitive="true">
|
|
486
|
+
<polygon
|
|
487
|
+
points="23 7 16 12 23 17 23 7"
|
|
488
|
+
id="polygon35" />
|
|
489
|
+
<rect
|
|
490
|
+
x="1"
|
|
491
|
+
y="5"
|
|
492
|
+
width="15"
|
|
493
|
+
height="14"
|
|
494
|
+
rx="2"
|
|
495
|
+
ry="2"
|
|
496
|
+
id="rect35" />
|
|
497
|
+
</g>
|
|
498
|
+
</svg>
|
|
Binary file
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
:root {
|
|
2
|
+
view-transition-name: none;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* fade
|
|
7
|
+
*/
|
|
8
|
+
|
|
9
|
+
@keyframes fade {
|
|
10
|
+
0% {
|
|
11
|
+
opacity: var(--start, 1);
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
100% {
|
|
15
|
+
opacity: var(--end, 1);
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
::view-transition-new(fade),
|
|
20
|
+
::view-transition-old(fade) {
|
|
21
|
+
animation: fade ease 0.3s;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
::view-transition-new(fade) {
|
|
25
|
+
--start: 0;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
::view-transition-old(fade) {
|
|
29
|
+
--end: 0;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
/**
|
|
34
|
+
* count
|
|
35
|
+
*/
|
|
36
|
+
|
|
37
|
+
@keyframes count {
|
|
38
|
+
0% {
|
|
39
|
+
scale: 1 var(--start, 1);
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
100% {
|
|
43
|
+
scale: 1 var(--end, 1);
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
::view-transition-new(count),
|
|
48
|
+
::view-transition-old(count) {
|
|
49
|
+
animation: count 0.25s;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
::view-transition-new(count) {
|
|
53
|
+
--start: 0;
|
|
54
|
+
transform-origin: 50% 0;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
::view-transition-old(count) {
|
|
58
|
+
--end: 0;
|
|
59
|
+
transform-origin: 50% 100%;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
/**
|
|
63
|
+
* count2
|
|
64
|
+
*/
|
|
65
|
+
|
|
66
|
+
@keyframes count2 {
|
|
67
|
+
0% {
|
|
68
|
+
scale: 1 var(--start, 1);
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
100% {
|
|
72
|
+
scale: 1 var(--end, 1);
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
::view-transition-new(count2),
|
|
77
|
+
::view-transition-old(count2) {
|
|
78
|
+
animation: count2 0.25s;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
::view-transition-new(count2) {
|
|
82
|
+
--start: 0;
|
|
83
|
+
transform-origin: 10% 1000;
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
::view-transition-old(count2) {
|
|
87
|
+
--end: 0;
|
|
88
|
+
transform-origin: 10% 0%;
|
|
89
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
@import './util.css';
|
|
2
|
+
@import './animations.css';
|
|
3
|
+
|
|
4
|
+
:root {
|
|
5
|
+
--primary-color: #344188;
|
|
6
|
+
--primary-color-50: #3441887a;
|
|
7
|
+
--link: #5fac9f;
|
|
8
|
+
--body-bg: #282c34;
|
|
9
|
+
--body-color: #a8a8a8;
|
|
10
|
+
--font-family: 'Roboto'
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
/**
|
|
14
|
+
* html
|
|
15
|
+
*/
|
|
16
|
+
|
|
17
|
+
html,
|
|
18
|
+
body {
|
|
19
|
+
background-color: var(--body-bg);
|
|
20
|
+
color: var(--body-color);
|
|
21
|
+
font-family: var(--font-family);
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
a {
|
|
25
|
+
color: var(--link);
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.mr-2 {
|
|
29
|
+
margin-right: 20px;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
.m-2 {
|
|
33
|
+
margin: 20px;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.p-2 {
|
|
37
|
+
padding: 20px;
|
|
38
|
+
}
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Fonts
|
|
3
|
+
*/
|
|
4
|
+
|
|
5
|
+
@font-face {
|
|
6
|
+
font-family: Roboto;
|
|
7
|
+
font-style: normal;
|
|
8
|
+
font-display: swap;
|
|
9
|
+
font-weight: bold;
|
|
10
|
+
src: url('../fonts/Roboto-Regular.ttf');
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
/**
|
|
14
|
+
* Scrollbar
|
|
15
|
+
*/
|
|
16
|
+
|
|
17
|
+
@media (pointer: fine) {
|
|
18
|
+
::-webkit-scrollbar {
|
|
19
|
+
width: 14px;
|
|
20
|
+
height: 14px;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
::-webkit-scrollbar-thumb {
|
|
24
|
+
border-radius: 14px;
|
|
25
|
+
border: 3px solid transparent;
|
|
26
|
+
background-clip: content-box;
|
|
27
|
+
background-color: var(--primary-color);
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
::-webkit-scrollbar-thumb:hover {
|
|
31
|
+
background-color: var(--primary-color-50);
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
::-webkit-scrollbar,
|
|
35
|
+
::-webkit-scrollbar-track,
|
|
36
|
+
::-webkit-scrollbar-corner {
|
|
37
|
+
background-color: transparent;
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
/**
|
|
42
|
+
* Media query
|
|
43
|
+
*/
|
|
44
|
+
|
|
45
|
+
:root {
|
|
46
|
+
--sm: false;
|
|
47
|
+
--md: false;
|
|
48
|
+
--lg: false;
|
|
49
|
+
--xl: false;
|
|
50
|
+
--xxl: false;
|
|
51
|
+
|
|
52
|
+
@media (640px <=width <768px) {
|
|
53
|
+
--sm: true;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
@media (768px <=width <1024px) {
|
|
57
|
+
--md: true;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
@media (1024px <=width <1280px) {
|
|
61
|
+
--lg: true;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
@media (1280px <=width < 1536px) {
|
|
65
|
+
--xl: true;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
@media (width >=1536px) {
|
|
69
|
+
--xxl: true;
|
|
70
|
+
}
|
|
71
|
+
}
|