Feat(NSI): exercice de lecture d'évènements
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2023-03-04 17:52:58 +01:00
parent 50a708b158
commit 8282f2ad6e
7 changed files with 181 additions and 1 deletions

View File

@@ -0,0 +1,34 @@
section {
background-color: #f1f1f1;
padding: 20px;
margin: 20px 0;
border: 1px solid black;
}
section h2 {
margin-top: 0;
}
section .close {
float: right;
}
section a {
text-decoration: none;
color: black;
}
#popup {
position: fixed;
top: 10%;
left: 50%;
transform: translate(-50%, -50%);
padding: 20px;
background-color: red;
border: 1px solid black;
z-index: 9999;
}
.hidden {
display: none;
}