67 lines
No EOL
1 KiB
CSS
67 lines
No EOL
1 KiB
CSS
body {
|
|
font-family: Arial, sans-serif;
|
|
background-color: #f4f4f4;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
table {
|
|
border-collapse: collapse;
|
|
width: 100%;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
th,
|
|
td {
|
|
border: 1px solid #ddd;
|
|
padding: 8px;
|
|
text-align: left;
|
|
}
|
|
|
|
th {
|
|
background-color: #f2f2f2;
|
|
font-weight: bold;
|
|
color: #333;
|
|
}
|
|
|
|
tr:nth-child(even) {
|
|
background-color: #f2f2f2;
|
|
}
|
|
|
|
tr:hover {
|
|
background-color: #ddd;
|
|
}
|
|
|
|
/* Add some spacing around the table */
|
|
#data-container {
|
|
padding: 20px;
|
|
}
|
|
|
|
.gros-titre {
|
|
font-size: larger;
|
|
font-weight: bolder;
|
|
}
|
|
|
|
.bulle-rouge{
|
|
width: fit-content;
|
|
padding-top: 5px;
|
|
padding-left: 5px;
|
|
padding-right: 5px;
|
|
padding-bottom: 5px;
|
|
background-color: rgba(255, 0, 0, 0.283);
|
|
border-radius: 5px;
|
|
border-width: 2px;
|
|
border-color: rgba(255, 0, 0, 0.283);
|
|
}
|
|
.centre-txt{
|
|
text-align: center;
|
|
}
|
|
|
|
.color-red-tr{
|
|
background-color: rgba(224, 54, 54, 0.482);
|
|
border-color: rgba(224, 54, 54, 0.482);
|
|
}
|
|
.centre-horizontal{
|
|
margin: auto;
|
|
justify-content: center;
|
|
} |