feat: beautify all team components and pages with dark gaming theme

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
congsh
2026-04-17 17:38:27 +08:00
parent 5c007ac069
commit d0c75d25cf
10 changed files with 1020 additions and 373 deletions
+28 -12
View File
@@ -56,12 +56,16 @@ const showScheduleModal = ref(false)
font-size: 28px;
font-weight: 700;
margin: 0 0 24px;
background: var(--gg-gradient);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.settings-list {
display: flex;
flex-direction: column;
gap: 16px;
gap: 12px;
}
.setting-item {
@@ -69,9 +73,15 @@ const showScheduleModal = ref(false)
align-items: center;
justify-content: space-between;
padding: 20px;
background: var(--el-bg-color);
border-radius: 12px;
border: 1px solid var(--el-border-color);
background: var(--gg-bg-card);
border: 1px solid var(--gg-border);
border-radius: var(--gg-radius-md);
transition: border-color 0.2s, box-shadow 0.2s;
}
.setting-item:hover {
border-color: var(--gg-primary);
box-shadow: 0 0 12px rgba(99, 102, 241, 0.1);
}
.setting-info {
@@ -80,33 +90,39 @@ const showScheduleModal = ref(false)
.setting-info h3 {
font-size: 16px;
font-weight: 600;
font-weight: 700;
margin: 0 0 4px;
color: var(--gg-text);
}
.setting-info p {
font-size: 13px;
color: var(--el-text-color-secondary);
color: var(--gg-text-secondary);
margin: 0;
}
.setting-btn {
padding: 8px 20px;
border: 1px solid var(--el-border-color);
border-radius: 8px;
background: var(--el-fill-color-light);
border: none;
border-radius: var(--gg-radius-sm);
background: var(--gg-gradient);
color: white;
font-size: 14px;
font-weight: 500;
cursor: pointer;
transition: all 0.2s;
transition: opacity 0.2s, box-shadow 0.2s;
}
.setting-btn:hover:not(:disabled) {
background: var(--el-fill-color);
border-color: var(--el-border-color-darker);
opacity: 0.9;
box-shadow: 0 0 12px rgba(99, 102, 241, 0.3);
}
.setting-btn:disabled {
background: var(--gg-bg-elevated);
color: var(--gg-text-muted);
opacity: 0.5;
cursor: not-allowed;
box-shadow: none;
}
</style>