58 lines
872 B
CSS
Executable File
58 lines
872 B
CSS
Executable File
/* body {
|
|
background-color: white;
|
|
color: black;
|
|
} */
|
|
.game table,
|
|
.game th,
|
|
.game td {
|
|
background-color: white;
|
|
color: black;
|
|
border: 10px solid black;
|
|
}
|
|
|
|
.game td {
|
|
height: 100px;
|
|
width: 100px;
|
|
padding: 0px;
|
|
vertical-align: center;
|
|
text-align: center;
|
|
font-size: 80px;
|
|
}
|
|
|
|
/* .leaderboard th,
|
|
.leaderboard td {
|
|
background-color: black;
|
|
color: white;
|
|
font-size: 20px;
|
|
height: auto;
|
|
width: auto;
|
|
} */
|
|
|
|
.game .red-td {
|
|
background-color: rgb(255, 54, 54);
|
|
}
|
|
|
|
.game .green-td {
|
|
background-color: rgb(21, 164, 21);
|
|
}
|
|
|
|
.game .blue-td {
|
|
background-color: rgb(36, 142, 255);
|
|
}
|
|
|
|
.game .yellow-td {
|
|
background-color: rgb(255, 255, 0);
|
|
}
|
|
|
|
.game .brown-td {
|
|
background-color: rgb(165, 118, 42);
|
|
}
|
|
.game .highlight-td {
|
|
outline-style: solid;
|
|
outline-width: 9px;
|
|
outline-color: rgb(0, 242, 255);
|
|
}
|
|
#game .highlight-td {
|
|
opacity: 0.8;
|
|
}
|