第一次

This commit is contained in:
浪子
2024-12-27 15:53:09 +08:00
parent 0bc1c6eae8
commit 893a531d4f
354 changed files with 6490 additions and 0 deletions
File diff suppressed because one or more lines are too long
+47
View File
@@ -0,0 +1,47 @@
/*
Multiverse by HTML5 UP
html5up.net | @n33co
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
*/
/* Button */
input[type="submit"],
input[type="reset"],
input[type="button"],
button,
.button {
border: solid 2px #36383c;
}
input[type="submit"].special,
input[type="reset"].special,
input[type="button"].special,
button.special,
.button.special {
border: 0;
}
/* Panel */
.panel {
background: #242629;
display: none;
}
.panel.active {
display: block;
}
.panel > .closer:before {
content: '\00d7';
font-size: 42px;
}
/* Main */
#main .thumb > h2 {
text-align: center;
width: 100%;
left: 0;
}
+41
View File
@@ -0,0 +1,41 @@
/*
Multiverse by HTML5 UP
html5up.net | @n33co
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
*/
/* Panel */
.panel > .inner.split:after {
clear: both;
content: '';
display: block;
}
.panel > .inner.split > div {
float: left;
margin-left: 0;
padding-left: 0;
}
.panel > .inner.split > :first-child {
padding-left: 0;
}
/* Wrapper */
#wrapper:before {
display: none;
}
/* Main */
#main:after {
clear: both;
content: '';
display: block;
}
#main .thumb {
float: left;
}
+11
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: 314 B

+10
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: 315 B

+17
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: 438 B

+1987
View File
File diff suppressed because it is too large Load Diff