body {
margin: 50px 50px 0 50px;
}
html {
background-color: #262626;
color: #f1f1f1;
font-family: Calibri;
}
#gameID {
margin: 10px 0 10px 0;
}
body button {
width: 500px;
padding: 12px 8px 12px 0px;
float: left;
display: block;
margin: auto;
font-size: 18px;
color: #f1f1f1;
background-color: #f44336;
border-style: none;
cursor: pointer;
margin-top: 10px;
}
ul {
margin: 0;
padding: 0;
width: 500px;
list-style-type: none;
}
ul li {
cursor: pointer;
position: relative;
padding: 12px 8px 12px 40px;
background: #dedeed;
color: #02028c;
font-size: 18px;
transition: 0.2s;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
ul li:nth-child(odd) {
background: #f9f9f9;
}
ul li:hover {
background: #ddd;
}
ul li.checked {
background: #888;
color: #fff;
}
ul li.checked::before {
content: '';
position: absolute;
border-color: #fff;
border-style: solid;
border-width: 0 2px 2px 0;
top: 10px;
left: 16px;
transform: rotate(45deg);
height: 15px;
width: 7px;
}
.selectionHeader {
background-color: #f44336;
padding: 12px 8px 12px 40px;
color: white;
width: 500px;
font-size: 16px;
border-style: none;
}