creat modul critial

This commit is contained in:
sebvtl728
2025-01-18 17:27:03 +01:00
parent 2d4341311d
commit ee7188c92c
6 changed files with 337 additions and 1 deletions
+45
View File
@@ -0,0 +1,45 @@
.critical-alert-overlay {
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
background: rgba(0, 0, 0, 0.8);
display: flex;
justify-content: center;
align-items: center;
z-index: 9999;
}
.critical-alert-box {
background: white;
padding: 20px;
border-radius: 5px;
text-align: center;
box-shadow: 0 0 10px rgba(255, 0, 0, 0.8);
}
.critical-alert-box h2 {
margin: 0;
color: red;
}
.critical-alert-box p {
font-size: 18px;
font-weight: bold;
}
/* Bandeau temporaire de test */
.test-banner {
position: fixed;
top: 0;
left: 0;
width: 100%;
background-color: red;
color: white;
text-align: center;
padding: 10px;
font-size: 16px;
font-weight: bold;
z-index: 99999;
}