Add matrix background and prepare filters
This commit is contained in:
@@ -1,18 +1,49 @@
|
||||
body {
|
||||
font-family: Arial, sans-serif;
|
||||
background-color: black;
|
||||
color: #e0e0e0;
|
||||
font-family: "Courier New", monospace;
|
||||
margin: 20px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
min-height: 100vh;
|
||||
}
|
||||
header {
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
table {
|
||||
width: 100%;
|
||||
border-collapse: collapse;
|
||||
}
|
||||
th, td {
|
||||
border: 1px solid #ccc;
|
||||
padding: 5px 10px;
|
||||
color: #00ff41;
|
||||
text-shadow: 0 0 10px #00ff41;
|
||||
margin-bottom: 50px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
th {
|
||||
background-color: #f0f0f0;
|
||||
/* 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-right:10px;
|
||||
color:white;
|
||||
font-weight:bold;
|
||||
}
|
||||
|
||||
.bold-label {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
#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;
|
||||
}
|
||||
Reference in New Issue
Block a user