feat: Semaine 8

This commit is contained in:
gauvainboiche
2026-05-11 09:25:19 +02:00
parent 606e43e53f
commit 3315cb2336
123 changed files with 5748 additions and 0 deletions
@@ -0,0 +1,34 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://unpkg.com/htmx.org@2.0.4"
integrity="sha384-HGfztofotfshcF7+8n44JQL2oJmowVChPTg48S+jvZoztPfvwD79OC/LTtG6dMp+"
crossorigin="anonymous"></script>
<title>Document</title>
<style>
body { font-family: sans-serif; max-width: 700px; margin: 40px auto; padding: 0 20px; }
h2 { color: #333; }
table { width: 100%; border-collapse: collapse; }
th, td { padding: 10px 12px; border: 1px solid #ddd; text-align: left; }
th { background: #f5f5f5; }
tr.order--late { background: #fdf2f2; }
tr.order--light_delay { background: #fff8e1; }
tr.order--severe_delay { background: #fdf2f2; }
.badge { padding: 3px 8px; border-radius: 3px; font-size: 12px; }
.badge--warning { background: #f39c12; color: white; }
.badge--success { background: #27ae60; color: white; }
.badge--premium { background: #8e44ad; color: white; }
button { padding: 6px 12px; cursor: pointer; }
</style>
</head>
<body>
<header>
<h1>🍕 Livr'Express</h1>
</header>
<main>
{% block content %}{% endblock %}
</main>
</body>
</html>