This commit is contained in:
2026-06-30 09:31:33 +07:00
parent c736326162
commit bbf8336664
77 changed files with 12601 additions and 556 deletions

691
client/frontend/src/app.css Normal file
View File

@@ -0,0 +1,691 @@
@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@400;500;600;700;800&family=Share+Tech+Mono&display=swap');
:root {
--bg-main: #f5f7fa;
--bg-card: #ffffff;
--bg-subtle: #f0f3f7;
--border-color: #e4e9f0;
--accent: #bb2126;
--accent-dark: #9e1c22;
--accent-light: #fde8e9;
--accent-glow: rgba(187, 33, 38, 0.12);
--text-primary: #1a2332;
--text-secondary: #5a6a7e;
--text-muted: #8b99a8;
--online-color: #0d9f6e;
--online-light: #e6f7f1;
--offline-color: #d63031;
--offline-light: #fdeaea;
--shadow-sm: 0 1px 3px rgba(26, 35, 50, 0.05);
--shadow-md: 0 4px 16px rgba(26, 35, 50, 0.07);
--radius-sm: 8px;
--radius-md: 12px;
--radius-lg: 16px;
--transition: 0.2s ease;
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
html {
height: 100%;
overflow: hidden;
}
body {
margin: 0;
background-color: var(--bg-main);
color: var(--text-primary);
font-family: 'Be Vietnam Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
overflow: hidden;
height: 100%;
width: 100%;
-webkit-font-smoothing: antialiased;
}
#app {
width: 100%;
height: 100%;
max-height: 100vh;
display: flex;
overflow: hidden;
}
/* ── Cards ── */
.card {
background: var(--bg-card);
border: 1px solid var(--border-color);
border-radius: var(--radius-lg);
box-shadow: var(--shadow-sm);
padding: 1.75rem;
transition: var(--transition);
}
/* ── Login Screen ── */
.login-prompt-container {
display: flex;
align-items: center;
justify-content: center;
width: 100%;
height: 100%;
padding: 1.5rem;
background: var(--bg-main);
overflow: hidden;
}
.login-prompt-container .card {
max-width: 420px;
width: 100%;
max-height: calc(100vh - 3rem);
overflow-y: auto;
text-align: center;
animation: floatIn 0.4s ease forwards;
}
.login-brand-row {
display: flex;
align-items: center;
justify-content: center;
gap: 0.75rem;
margin-bottom: 1.5rem;
}
.login-logo {
width: 48px;
height: 48px;
background: var(--accent);
border-radius: var(--radius-sm);
display: flex;
align-items: center;
justify-content: center;
font-weight: 800;
font-size: 0.9rem;
color: white;
flex-shrink: 0;
}
.login-brand-text {
text-align: left;
}
.login-brand-name {
font-size: 1.1rem;
font-weight: 800;
color: var(--text-primary);
letter-spacing: -0.3px;
line-height: 1.2;
}
.login-brand-sub {
font-size: 0.72rem;
font-weight: 500;
color: var(--accent);
}
.login-title {
font-size: 1.35rem;
font-weight: 800;
margin-bottom: 0.6rem;
color: var(--text-primary);
letter-spacing: -0.3px;
}
.login-desc {
color: var(--text-secondary);
font-size: 0.875rem;
line-height: 1.65;
margin-bottom: 1.75rem;
}
/* ── Dashboard Layout ── */
.dashboard-wrapper {
display: flex;
flex-direction: column;
width: 100%;
height: 100%;
max-height: 100vh;
padding: 1.25rem 1.5rem;
box-sizing: border-box;
overflow: hidden;
animation: fadeIn 0.35s ease-out;
}
.header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 1rem;
padding-bottom: 0.85rem;
border-bottom: 1px solid var(--border-color);
flex-shrink: 0;
}
.brand {
display: flex;
align-items: center;
gap: 0.75rem;
}
.brand-logo {
width: 38px;
height: 38px;
background: var(--accent);
border-radius: var(--radius-sm);
display: flex;
align-items: center;
justify-content: center;
font-weight: 800;
font-size: 0.85rem;
color: white;
flex-shrink: 0;
}
.brand-text {
display: flex;
flex-direction: column;
gap: 0.05rem;
}
.brand-name {
font-weight: 800;
font-size: 1.05rem;
letter-spacing: -0.3px;
color: var(--text-primary);
line-height: 1.2;
}
.brand-sub {
font-size: 0.7rem;
font-weight: 500;
color: var(--accent);
}
.main-grid {
display: grid;
grid-template-columns: minmax(220px, 260px) 1fr;
gap: 1rem;
flex: 1;
min-height: 0;
overflow: hidden;
}
/* ── Profile Card ── */
.profile-card {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
height: 100%;
min-height: 0;
overflow-y: auto;
justify-content: flex-start;
padding-top: 1rem;
}
.avatar-container {
position: relative;
margin-bottom: 1.25rem;
}
.avatar {
width: 84px;
height: 84px;
border-radius: 50%;
object-fit: cover;
border: 3px solid var(--accent-light);
padding: 3px;
background: var(--bg-subtle);
}
.status-indicator {
position: absolute;
bottom: 6px;
right: 6px;
width: 14px;
height: 14px;
border-radius: 50%;
border: 2.5px solid #fff;
}
.status-indicator.online {
background-color: var(--online-color);
animation: pulseGreen 2s infinite;
}
.status-indicator.offline {
background-color: var(--offline-color);
animation: pulseRed 2s infinite;
}
.student-name {
margin: 0;
font-size: 1.2rem;
font-weight: 700;
color: var(--text-primary);
letter-spacing: -0.3px;
}
.student-code {
background: var(--accent-light);
color: var(--accent);
padding: 3px 10px;
border-radius: 6px;
font-size: 0.8rem;
font-weight: 700;
margin-top: 0.4rem;
margin-bottom: 0.5rem;
border: 1px solid rgba(187, 33, 38, 0.15);
letter-spacing: 0.3px;
display: inline-block;
}
.student-email {
margin: 0;
color: var(--text-muted);
font-size: 0.82rem;
}
.divider {
width: 100%;
height: 1px;
background: var(--border-color);
margin: 1.25rem 0;
}
.profile-info-row {
display: flex;
justify-content: space-between;
width: 100%;
font-size: 0.82rem;
margin-bottom: 0.6rem;
}
.profile-info-row span {
color: var(--text-muted);
}
.profile-info-row strong {
color: var(--text-primary);
font-weight: 600;
}
/* ── Right Column ── */
.right-column {
display: flex;
flex-direction: column;
gap: 0.85rem;
overflow: hidden;
height: 100%;
min-height: 0;
}
.status-banner {
padding: 0.75rem 1rem;
display: flex;
align-items: flex-start;
gap: 0.75rem;
border-left: 3px solid var(--accent);
flex-shrink: 0;
}
.status-banner-main {
flex: 1;
min-width: 0;
}
.status-banner-top {
display: flex;
flex-wrap: wrap;
align-items: center;
gap: 0.4rem 0.65rem;
margin-bottom: 0.25rem;
}
.monitor-mode-tag {
font-size: 0.68rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.04em;
padding: 0.15rem 0.45rem;
border-radius: 4px;
background: var(--accent-light);
color: var(--accent);
}
.status-class-line {
font-size: 0.78rem;
font-weight: 600;
color: var(--text-secondary);
}
.status-banner-sub {
font-size: 0.78rem;
color: var(--text-muted);
margin-top: 0.2rem;
}
.status-banner.mode-learning { border-left-color: var(--online-color); }
.status-banner.mode-learning .monitor-mode-tag { background: var(--online-light); color: var(--online-color); }
.status-banner.mode-outside { border-left-color: #94a3b8; }
.status-banner.mode-outside .monitor-mode-tag { background: #f1f5f9; color: #64748b; }
.status-banner.mode-config { border-left-color: #f59e0b; }
.status-banner.mode-config .monitor-mode-tag { background: #fffbeb; color: #b45309; }
.status-banner.mode-exam { border-left-color: #7c3aed; }
.status-banner.mode-exam .monitor-mode-tag { background: #f5f3ff; color: #6d28d9; }
.stats-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 0.65rem;
}
.stats-grid--two {
grid-template-columns: 1fr 1fr;
}
.connectivity-note {
font-size: 0.75rem;
line-height: 1.45;
color: var(--text-muted);
padding: 0.65rem 0.85rem;
background: #f8fafc;
border: 1px solid var(--border-color);
}
.connectivity-note strong {
color: var(--text-primary);
}
.conn-split {
font-weight: 600;
color: var(--online-color);
}
.conn-split.offline-text {
color: var(--offline-color);
}
.card-title-row {
display: flex;
justify-content: space-between;
align-items: baseline;
gap: 0.5rem;
margin-bottom: 0.65rem;
}
.card-title-sub {
font-size: 0.75rem;
color: var(--text-muted);
font-family: monospace;
}
.clock-display-summary {
margin-bottom: 0.75rem;
padding-bottom: 0.75rem;
border-bottom: 1px dashed var(--border-color);
}
.shifts-wrap {
overflow: auto;
max-height: min(32vh, 220px);
}
.shifts-table {
width: 100%;
border-collapse: collapse;
font-size: 0.76rem;
}
.shifts-table th {
text-align: left;
padding: 0.4rem 0.35rem;
color: var(--text-muted);
font-weight: 600;
border-bottom: 1px solid var(--border-color);
position: sticky;
top: 0;
background: #fff;
}
.shifts-table td {
padding: 0.45rem 0.35rem;
border-bottom: 1px solid #f1f5f9;
vertical-align: middle;
}
.shift-row-active {
background: #f0fdf8;
}
.shift-now {
font-size: 0.65rem;
color: var(--online-color);
font-weight: 700;
text-transform: uppercase;
}
.shift-time {
font-family: monospace;
font-size: 0.72rem;
color: var(--text-muted);
}
.time-online { color: var(--online-color); font-family: monospace; font-weight: 600; }
.time-offline { color: var(--offline-color); font-family: monospace; }
.att-badge {
display: inline-block;
padding: 0.12rem 0.4rem;
border-radius: 4px;
font-size: 0.68rem;
font-weight: 600;
white-space: nowrap;
}
.att-ok { background: var(--online-light); color: var(--online-color); }
.att-late { background: #fffbeb; color: #b45309; }
.att-leave { background: #eff6ff; color: #2563eb; }
.att-absent { background: var(--offline-light); color: var(--offline-color); }
.att-pending { background: #f1f5f9; color: #64748b; }
.shifts-empty {
padding: 1rem;
text-align: center;
color: var(--text-muted);
font-size: 0.82rem;
}
.status-banner-icon {
width: 36px;
height: 36px;
background: var(--accent-light);
border-radius: var(--radius-sm);
display: flex;
align-items: center;
justify-content: center;
font-size: 1.1rem;
flex-shrink: 0;
}
.status-banner-label {
font-size: 0.7rem;
color: var(--text-muted);
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.04em;
}
.status-banner-value {
font-size: 0.9rem;
font-weight: 600;
color: var(--text-primary);
}
.stat-card {
display: flex;
align-items: center;
gap: 0.85rem;
padding: 0.9rem 1rem;
}
.stat-icon-wrap {
width: 40px;
height: 40px;
background: var(--bg-subtle);
border-radius: var(--radius-sm);
display: flex;
align-items: center;
justify-content: center;
font-size: 1.2rem;
flex-shrink: 0;
}
.stat-info {
display: flex;
flex-direction: column;
gap: 0.15rem;
min-width: 0;
}
.stat-title {
font-size: 0.72rem;
color: var(--text-muted);
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.04em;
}
.stat-value {
font-size: 0.95rem;
font-weight: 700;
color: var(--text-primary);
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
/* ── Clocks ── */
.clocks-card {
display: flex;
flex-direction: column;
gap: 0.65rem;
flex: 1;
min-height: 0;
overflow: hidden;
}
.card-title {
font-size: 0.85rem;
font-weight: 700;
color: var(--text-primary);
letter-spacing: -0.2px;
flex-shrink: 0;
}
.clock-display {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 0.85rem;
flex: 1;
min-height: 0;
}
.clock-item {
background: var(--bg-subtle);
border: 1px solid var(--border-color);
border-radius: var(--radius-md);
padding: 0.75rem 0.85rem;
text-align: center;
transition: var(--transition);
display: flex;
flex-direction: column;
justify-content: center;
}
.clock-label {
font-size: 0.68rem;
color: var(--text-muted);
font-weight: 600;
margin-bottom: 0.4rem;
letter-spacing: 0.04em;
text-transform: uppercase;
}
.clock-value {
font-size: clamp(1.4rem, 3.5vw, 1.85rem);
font-weight: 800;
font-family: 'Share Tech Mono', monospace;
letter-spacing: 1px;
}
.clock-value.online {
color: var(--online-color);
}
.clock-value.offline {
color: var(--offline-color);
}
/* ── Buttons ── */
.btn {
padding: 0.65rem 1.15rem;
border-radius: var(--radius-sm);
border: none;
font-weight: 600;
font-size: 0.875rem;
font-family: 'Be Vietnam Pro', sans-serif;
cursor: pointer;
transition: var(--transition);
}
.btn-primary {
background: var(--accent);
color: white;
box-shadow: 0 2px 8px var(--accent-glow);
}
.btn-primary:hover {
background: var(--accent-dark);
transform: translateY(-1px);
box-shadow: 0 4px 14px rgba(187, 33, 38, 0.25);
}
.btn-logout {
background: var(--bg-subtle);
color: var(--text-secondary);
border: 1px solid var(--border-color);
padding: 0.5rem 0.9rem;
font-size: 0.82rem;
}
.btn-logout:hover {
background: var(--offline-light);
color: var(--offline-color);
border-color: rgba(214, 48, 49, 0.25);
}
/* ── Animations ── */
@keyframes floatIn {
from { opacity: 0; transform: translateY(12px); }
to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
@keyframes pulseGreen {
0% { box-shadow: 0 0 0 0 rgba(13, 159, 110, 0.35); }
70% { box-shadow: 0 0 0 8px rgba(13, 159, 110, 0); }
100% { box-shadow: 0 0 0 0 rgba(13, 159, 110, 0); }
}
@keyframes pulseRed {
0% { box-shadow: 0 0 0 0 rgba(214, 48, 49, 0.35); }
70% { box-shadow: 0 0 0 8px rgba(214, 48, 49, 0); }
100% { box-shadow: 0 0 0 0 rgba(214, 48, 49, 0); }
}