feat : ajout page monitoring

This commit is contained in:
2026-03-06 15:26:51 +01:00
parent 993524aa72
commit 8b5d4e9655
21 changed files with 11098 additions and 0 deletions

27
assets/css/main.css Normal file
View File

@@ -0,0 +1,27 @@
@import "tailwindcss";
@import "./malio.css";
@theme {
--color-panel: #0f172a;
--color-panel-soft: #1e293b;
--color-m-primary: rgb(var(--m-primary));
--color-m-secondary: rgb(var(--m-secondary));
--color-m-tertiary: rgb(var(--m-tertiary));
--color-m-border: rgb(var(--m-border));
--color-m-text: rgb(var(--m-text));
--color-m-muted: rgb(var(--m-muted));
--color-m-bg: rgb(var(--m-bg));
--color-m-error: rgb(var(--m-error));
--color-m-success: rgb(var(--m-success));
/* Alias pour la faute de frappe courante "m-succes" */
--color-m-succes: rgb(var(--m-success));
}
@layer utilities {
.bg-grid {
background-image:
linear-gradient(to right, rgba(148, 163, 184, 0.12) 1px, transparent 1px),
linear-gradient(to bottom, rgba(148, 163, 184, 0.12) 1px, transparent 1px);
background-size: 32px 32px;
}
}