feat: flat design avec palette Blazing Flame
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-03 15:35:39 +00:00
parent 693615a7dc
commit 0179ddbdf4
21 changed files with 348 additions and 487 deletions
+10 -12
View File
@@ -60,7 +60,7 @@
background: var(--bg-card);
border-radius: var(--card-radius);
padding: 30px;
border: 1px solid rgba(255, 255, 255, 0.05);
border: 1px solid #ced0ce;
animation: fadeIn 0.3s ease-out;
}
@@ -71,21 +71,20 @@
}
.view-grid .episode-item {
background: rgba(255, 255, 255, 0.03);
background: #ffffff;
padding: 20px 15px;
border-radius: 12px;
border-radius: 4px;
text-align: center;
transition: var(--transition);
border: 1px solid rgba(255, 255, 255, 0.05);
border: 1px solid #ced0ce;
display: flex;
flex-direction: column;
gap: 12px;
}
.view-grid .episode-item:hover {
background: rgba(255, 255, 255, 0.07);
background: #e6e8e6;
border-color: var(--primary);
transform: translateY(-3px);
}
.view-grid .ep-title { display: none; }
@@ -103,15 +102,15 @@
display: flex;
align-items: center;
gap: 20px;
background: rgba(255, 255, 255, 0.03);
background: #ffffff;
padding: 12px 20px;
border-radius: 10px;
border: 1px solid rgba(255, 255, 255, 0.05);
border-radius: 4px;
border: 1px solid #ced0ce;
transition: var(--transition);
}
.view-list .episode-item:hover {
background: rgba(255, 255, 255, 0.07);
background: #e6e8e6;
border-color: var(--primary);
}
@@ -123,9 +122,8 @@
margin: 20px 0 30px 0;
padding: 25px;
background: #000;
border-radius: 12px;
border-radius: 4px;
border: 1px solid var(--primary);
box-shadow: 0 0 30px rgba(0, 217, 255, 0.15);
}
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }