a638c96a63
Changed some stuff
64 lines
901 B
CSS
64 lines
901 B
CSS
.container {
|
|
padding: 20px;
|
|
}
|
|
|
|
.content {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: flex-start;
|
|
}
|
|
|
|
.button-group {
|
|
display: flex;
|
|
align-self: center;
|
|
flex-direction: row;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.button-group .btn {
|
|
margin-bottom: 10px;
|
|
padding: 10px 20px;
|
|
color: white;
|
|
border: none;
|
|
cursor: pointer;
|
|
text-align: center;
|
|
}
|
|
|
|
.table-container {
|
|
width: 100%;
|
|
}
|
|
|
|
.games-table {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
margin-bottom: 20px;
|
|
background-color: #333;
|
|
color: #fff;
|
|
}
|
|
|
|
.games-table th, .games-table td {
|
|
border: 1px solid #555;
|
|
padding: 8px;
|
|
}
|
|
|
|
.games-table th {
|
|
background-color: #444;
|
|
text-align: left;
|
|
}
|
|
|
|
.games-table tr:nth-child(even) {
|
|
background-color: #3a3a3a;
|
|
}
|
|
|
|
.games-table tr:hover {
|
|
background-color: #555;
|
|
}
|
|
|
|
.game-link {
|
|
color: #1e90ff;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.game-link:hover {
|
|
text-decoration: underline;
|
|
} |