第一次提交

This commit is contained in:
2025-12-02 17:38:59 +08:00
parent 56f87ecd25
commit e09f1f38e6
40 changed files with 6647 additions and 0 deletions

83
src/styles.css Normal file
View File

@@ -0,0 +1,83 @@
:root {
font-family: Inter, Avenir, Helvetica, Arial, sans-serif;
font-size: 16px;
line-height: 24px;
font-weight: 400;
color: #0f0f0f;
background-color: #f6f6f6;
font-synthesis: none;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
-webkit-text-size-adjust: 100%;
}
.container {
margin: 0;
padding-top: 10vh;
display: flex;
flex-direction: column;
justify-content: center;
text-align: center;
}
h1 {
text-align: center;
}
.card {
padding: 2em;
}
button {
border-radius: 8px;
border: 1px solid transparent;
padding: 0.6em 1.2em;
font-size: 1em;
font-weight: 500;
font-family: inherit;
background-color: #1a1a1a;
color: white;
cursor: pointer;
transition: border-color 0.25s;
}
button:hover {
border-color: #646cff;
}
button:focus,
button:focus-visible {
outline: 4px auto -webkit-focus-ring-color;
}
#status-msg {
margin-top: 20px;
font-weight: bold;
}
.processing {
color: #007bff;
}
.success {
color: #28a745;
}
.error {
color: #dc3545;
}
@media (prefers-color-scheme: dark) {
:root {
color: #f6f6f6;
background-color: #2f2f2f;
}
button {
background-color: #f9f9f9;
color: #0f0f0f;
}
}