first commit

This commit is contained in:
2025-08-12 01:56:31 +08:00
parent fdbbda958c
commit 1ff4d3dce2
101 changed files with 14179 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="32px" height="32px" viewBox="0 0 32 32" zoomAndPan="disable">
<style>
line {
stroke: #fff;
stroke-width: 1px;
}
</style>
<line x1="8" y1="0" x2="24" y2="16" />
<line x1="8" y1="32" x2="24" y2="16" />
</svg>

After

Width:  |  Height:  |  Size: 321 B

11
assets/css/images/arrow.svg Executable file
View File

@@ -0,0 +1,11 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="96px" height="96px" viewBox="0 0 96 96" zoomAndPan="disable">
<style>
line {
stroke: #fff;
stroke-width: 1px;
}
</style>
<line x1="32" y1="16" x2="64" y2="48" />
<line x1="32" y1="80" x2="64" y2="48" />
</svg>

After

Width:  |  Height:  |  Size: 324 B

View File

@@ -0,0 +1,10 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="32px" height="32px" viewBox="0 0 32 32" zoomAndPan="disable">
<style>
line {
stroke: #ccc;
stroke-width: 1.5px;
}
</style>
<line x1="8" y1="8" x2="24" y2="24" />
<line x1="8" y1="24" x2="24" y2="8" />
</svg>

After

Width:  |  Height:  |  Size: 320 B

View File

@@ -0,0 +1,10 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="32px" height="32px" viewBox="0 0 32 32" zoomAndPan="disable">
<style>
line {
stroke: #fff;
stroke-width: 1.5px;
}
</style>
<line x1="8" y1="8" x2="24" y2="24" />
<line x1="8" y1="24" x2="24" y2="8" />
</svg>

After

Width:  |  Height:  |  Size: 320 B

10
assets/css/images/close.svg Executable file
View File

@@ -0,0 +1,10 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="64px" height="64px" viewBox="0 0 64 64" zoomAndPan="disable">
<style>
line {
stroke: #fff;
stroke-width: 1.5px;
}
</style>
<line x1="20" y1="20" x2="44" y2="44" />
<line x1="20" y1="44" x2="44" y2="20" />
</svg>

After

Width:  |  Height:  |  Size: 324 B

View File

@@ -0,0 +1,11 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="32px" height="32px" viewBox="0 0 32 32" zoomAndPan="disable">
<style>
line {
stroke: #fff;
stroke-width: 1.5px;
}
</style>
<line x1="6" y1="10" x2="26" y2="10" />
<line x1="6" y1="16" x2="26" y2="16" />
<line x1="6" y1="22" x2="26" y2="22" />
</svg>

After

Width:  |  Height:  |  Size: 364 B

12
assets/css/images/open.svg Executable file
View File

@@ -0,0 +1,12 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="64px" height="64px" viewBox="0 0 64 64" zoomAndPan="disable">
<style>
line {
stroke: #fff;
stroke-width: 1.5px;
}
</style>
<line x1="20" y1="20" x2="44" y2="20.025" />
<line x1="20" y1="28" x2="44" y2="28.025" />
<line x1="20" y1="36" x2="44" y2="36.025" />
<line x1="20" y1="44" x2="44" y2="44.025" />
</svg>

After

Width:  |  Height:  |  Size: 426 B

17
assets/css/images/spinner.svg Executable file
View File

@@ -0,0 +1,17 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="96px" height="96px" viewBox="0 0 96 96" zoomAndPan="disable">
<style>
circle {
fill: transparent;
stroke: #fff;
stroke-width: 1.5px;
}
</style>
<defs>
<clipPath id="corner">
<polygon points="0,0 48,0 48,48 96,48 96,96 0,96" />
</clipPath>
</defs>
<g clip-path="url(#corner)">
<circle cx="48" cy="48" r="32"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 454 B