feat: flat design Sunset Glitch palette + Font Awesome icons
CI / Test (Python 3.11) (pull_request) Has been cancelled
CI / Test (Python 3.12) (pull_request) Has been cancelled
CI / Lint (pull_request) Has been cancelled
CI / Type Check (pull_request) Has been cancelled
CI / Summary (pull_request) Has been cancelled

This commit is contained in:
root
2026-04-04 07:59:46 +00:00
parent 0179ddbdf4
commit 9e53579b36
24 changed files with 437 additions and 260 deletions
+7 -7
View File
@@ -60,7 +60,7 @@
background: var(--bg-card);
border-radius: var(--card-radius);
padding: 30px;
border: 1px solid #ced0ce;
border: 1px solid var(--secondary);
animation: fadeIn 0.3s ease-out;
}
@@ -71,19 +71,19 @@
}
.view-grid .episode-item {
background: #ffffff;
background: var(--bg-elevated);
padding: 20px 15px;
border-radius: 4px;
text-align: center;
transition: var(--transition);
border: 1px solid #ced0ce;
border: 1px solid var(--secondary);
display: flex;
flex-direction: column;
gap: 12px;
}
.view-grid .episode-item:hover {
background: #e6e8e6;
background: var(--text-dim);
border-color: var(--primary);
}
@@ -102,15 +102,15 @@
display: flex;
align-items: center;
gap: 20px;
background: #ffffff;
background: var(--bg-elevated);
padding: 12px 20px;
border-radius: 4px;
border: 1px solid #ced0ce;
border: 1px solid var(--secondary);
transition: var(--transition);
}
.view-list .episode-item:hover {
background: #e6e8e6;
background: var(--text-dim);
border-color: var(--primary);
}