feat: implement account archiving system and brand logo upgrade

This commit is contained in:
jason
2026-03-04 00:09:01 +08:00
parent fc4898a9ee
commit 734c99849d
3 changed files with 174 additions and 46 deletions

View File

@@ -34,14 +34,26 @@ body {
border-bottom: 1px solid var(--border-color);
}
h1 {
font-size: 16px;
font-weight: 600;
margin: 0;
background: linear-gradient(90deg, #2563eb, #3b82f6);
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
.logo {
display: flex;
align-items: center;
justify-content: center;
filter: drop-shadow(0 2px 4px rgba(59, 130, 246, 0.2));
transition: transform 0.3s ease;
}
.logo:hover {
transform: scale(1.05) rotate(2deg);
}
#archive-toggle {
color: var(--text-secondary);
opacity: 0.7;
}
#archive-toggle:hover {
opacity: 1;
background: rgba(100, 116, 139, 0.1);
}
.icon-btn {