修改样式

This commit is contained in:
CN-JS-HuiBai
2026-04-04 20:28:30 +08:00
parent 763f90e8e5
commit 8aeec1687f
3 changed files with 124 additions and 10 deletions

View File

@@ -305,6 +305,98 @@ body {
transform: rotate(30deg);
}
/* ---- Theme Switch ---- */
.theme-switch-wrapper {
display: flex;
align-items: center;
}
.theme-switch {
display: inline-block;
height: 28px;
position: relative;
width: 54px;
}
.theme-switch input {
display: none;
}
.slider {
background-color: var(--bg-card);
bottom: 0;
cursor: pointer;
left: 0;
position: absolute;
right: 0;
top: 0;
transition: .4s;
border: 1px solid var(--border-color);
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 4px;
}
.slider:before {
background-color: #fff;
bottom: 3px;
content: "";
height: 20px;
left: 4px;
position: absolute;
transition: .4s;
width: 20px;
z-index: 2;
box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.slider.round {
border-radius: 34px;
}
.slider.round:before {
border-radius: 50%;
}
input:checked + .slider {
background-color: var(--accent-indigo);
border-color: var(--accent-indigo);
}
input:checked + .slider:before {
transform: translateX(24px);
}
.theme-icon {
width: 14px;
height: 14px;
z-index: 1;
transition: opacity 0.3s;
}
.sun-icon {
color: #fbbf24;
}
.moon-icon {
color: #cbd5e1;
}
/* ---- Gauge Time ---- */
.title-time {
font-family: var(--font-mono);
font-size: 0.85rem;
font-weight: 500;
color: var(--accent-indigo);
margin-right: 8px;
opacity: 0.9;
}
:root.light-theme .title-time {
color: var(--accent-blue);
}
/* ---- Dashboard Layout ---- */
.dashboard {
padding: 24px 28px 40px;