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
+27 -27
View File
@@ -14,13 +14,13 @@
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
background: #ffffff;
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
padding: 20px;
color: #fff;
color: #191919;
}
.container {
@@ -36,13 +36,14 @@
.header h1 {
font-size: 1.5rem;
margin-bottom: 10px;
color: #00d9ff;
color: #f15025;
}
.video-info {
background: rgba(255, 255, 255, 0.05);
background: #e6e8e6;
padding: 15px 20px;
border-radius: 10px;
border-radius: 4px;
border: 1px solid #ced0ce;
margin-bottom: 20px;
display: flex;
justify-content: space-between;
@@ -57,19 +58,18 @@
}
.video-info .filesize {
color: #aaa;
color: #ced0ce;
font-size: 0.9rem;
}
.video-wrapper {
background: #000;
border-radius: 15px;
border-radius: 4px;
overflow: hidden;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.plyr {
border-radius: 15px;
border-radius: 4px;
}
.controls {
@@ -82,13 +82,13 @@
.btn {
padding: 12px 24px;
background: rgba(255, 255, 255, 0.1);
border: 1px solid rgba(255, 255, 255, 0.2);
color: #fff;
border-radius: 8px;
background: #e6e8e6;
border: 1px solid #ced0ce;
color: #191919;
border-radius: 4px;
cursor: pointer;
font-size: 0.9rem;
transition: all 0.3s ease;
transition: all 0.2s ease;
text-decoration: none;
display: inline-flex;
align-items: center;
@@ -96,28 +96,28 @@
}
.btn:hover {
background: rgba(0, 217, 255, 0.2);
border-color: #00d9ff;
transform: translateY(-2px);
background: #ced0ce;
border-color: #191919;
}
.btn-primary {
background: linear-gradient(135deg, #00d9ff 0%, #00ff88 100%);
border: none;
color: #000;
background: #f15025;
border: 1px solid #f15025;
color: #fff;
font-weight: 600;
}
.btn-primary:hover {
background: linear-gradient(135deg, #00ff88 0%, #00d9ff 100%);
background: #d94420;
border-color: #d94420;
}
.error-message {
background: rgba(255, 71, 87, 0.1);
border: 1px solid #ff4757;
color: #ff4757;
background: rgba(230, 57, 70, 0.1);
border: 1px solid #e63946;
color: #e63946;
padding: 20px;
border-radius: 10px;
border-radius: 4px;
text-align: center;
margin-top: 20px;
}
@@ -169,8 +169,8 @@
wrapper.innerHTML = `
<div class="error-message">
Erreur lors de la lecture du flux vidéo.<br>
<a href="/video/{{ task_id }}" style="color: #00d9ff; text-decoration: underline;">Réessayer</a> ou
<a href="/stream/{{ filename }}" style="color: #00d9ff; text-decoration: underline;" download>Télécharger</a>
<a href="/video/{{ task_id }}" style="color: #f15025; text-decoration: underline;">Réessayer</a> ou
<a href="/stream/{{ filename }}" style="color: #f15025; text-decoration: underline;" download>Télécharger</a>
</div>
`;
});