53 lines
976 B
CSS
53 lines
976 B
CSS
body {
|
|
background-color: black;
|
|
color: #e0e0e0;
|
|
font-family: "Courier New", monospace;
|
|
margin: 20px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
min-height: 100vh;
|
|
}
|
|
header {
|
|
color: #00ff41;
|
|
text-shadow: 0 0 10px #00ff41;
|
|
text-align: center;
|
|
}
|
|
|
|
th {
|
|
/* background-color: rgba(0, 0, 0, 0.8); */
|
|
background-color: #00ff41;
|
|
color: black;
|
|
font-weight:bold;
|
|
}
|
|
|
|
td {
|
|
background-color: rgba(0, 0, 0, 0.6);
|
|
font-weight:bold;
|
|
}
|
|
|
|
.user-info {
|
|
display:inline;
|
|
margin: 5px;
|
|
color:white;
|
|
font-weight:bold;
|
|
}
|
|
|
|
.bold-label {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.second-header {
|
|
font-weight: bold;
|
|
margin: 10px;
|
|
}
|
|
|
|
#results-table td:nth-child(2),
|
|
#results-table td:nth-child(3),
|
|
#results-table td:nth-child(4),
|
|
#results-table th:nth-child(2),
|
|
#results-table th:nth-child(3),
|
|
#results-table th:nth-child(4) {
|
|
white-space: nowrap; /* empêche le retour à la ligne */
|
|
text-align: center;
|
|
} |