56 lines
646 B
CSS
56 lines
646 B
CSS
body {
|
|
background-color: rgb(226, 238, 159);
|
|
}
|
|
|
|
#container {
|
|
margin: auto;
|
|
width: 600px;
|
|
}
|
|
|
|
#myCanvas {
|
|
background-color: #000000;
|
|
border: 3px red solid;
|
|
|
|
}
|
|
|
|
#popup {
|
|
position : absolute;
|
|
top: 150px;
|
|
left: 300px;
|
|
font-size: 20px;
|
|
text-align: center;
|
|
color: rgb(100, 219, 223);
|
|
display: none;
|
|
}
|
|
#continue_game{
|
|
display: none;
|
|
}
|
|
#correct{
|
|
display: none;
|
|
}
|
|
#incorrect{
|
|
display: none;
|
|
}
|
|
|
|
#score {
|
|
width: 600px;
|
|
height: 100px;
|
|
margin: auto;
|
|
background-color: grey;
|
|
}
|
|
|
|
#current, #highest {
|
|
font-size : 25px;
|
|
color: black;
|
|
text-align: center;
|
|
}
|
|
|
|
a {
|
|
text-decoration: none;
|
|
color : #FFFFFF;
|
|
}
|
|
|
|
span {
|
|
color : #FFFFFF;
|
|
}
|