Files
count_attendance/src/styles.css
2025-12-03 09:53:10 +08:00

101 lines
1.5 KiB
CSS

: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;
}
button:disabled {
background-color: #ccc;
cursor: not-allowed;
}
#process-btn {
margin-top: 10px;
background-color: #4472C4; /* Match Excel header color */
}
.file-path {
font-size: 0.9em;
color: #666;
margin: 10px 0;
word-break: break-all;
}
#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;
}
}