projectgungame-roomviewer-php/index.css
2023-07-12 14:37:01 +02:00

48 lines
732 B
CSS

body {
display: flex;
flex-direction: column;
justify-content: center;
background-color: #20202a;
color: white;
font-family: sans-serif;
}
table {
font-size: large;
border-collapse: collapse;
}
thead {
border-collapse: separate;
background-color: rgba(255, 255, 255, 0.1);
}
th {
border: 1px solid black;
}
td {
border: 1px solid black;
padding: 0.2em;
text-align: center;
}
tr {
border: 1px solid black;
background-color: rgba(255, 255, 255, 0.05);
}
tr:hover {
background-color: rgba(255, 255, 255, 0.2);
}
td .nogames {
width: 100%;
}
.status_code {
color: whitesmoke;
padding: 0.2em;
}
.error {
font-size: larger;
font-weight: 900;
}