You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
74 lines
1011 B
74 lines
1011 B
header h1 {
|
|
font-size: 75px;
|
|
text-align: center;
|
|
}
|
|
|
|
#startButton {
|
|
position: relative;
|
|
border: 3px solid blue;
|
|
height: 50px;
|
|
width: 200px;
|
|
text-align: center;
|
|
top: -40px;
|
|
left: calc(50% - 100px);
|
|
font-size: 40px;
|
|
z-index: 99999;
|
|
}
|
|
|
|
#startButton:hover {
|
|
border: 3px solid red;
|
|
color: red;
|
|
}
|
|
|
|
#gameArea {
|
|
position: relative;
|
|
border: 1px solid black;
|
|
height: 700px;
|
|
width: 1000px;
|
|
left: calc(50% - 500px);
|
|
}
|
|
|
|
#guessesLeft, #guessedLetters {
|
|
position: relative;
|
|
width: 800px;
|
|
height: 100px;
|
|
border: 1px solid black;
|
|
left: calc(50% - 400px);
|
|
margin-top: 20px;
|
|
}
|
|
|
|
#currentWord {
|
|
position: relative;
|
|
width: 800px;
|
|
height: 400px;
|
|
border: 1px solid black;
|
|
left: calc(50% - 400px);
|
|
margin-top: 20px;
|
|
}
|
|
|
|
#gameWord {
|
|
font-size: 100px;
|
|
}
|
|
|
|
#screenMessage {
|
|
display: none;
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
background: rgba(0,0,0,0.9);
|
|
z-index: 9999;
|
|
font-size: 100px;
|
|
color: yellow;
|
|
line-height: 1000px;
|
|
}
|
|
|
|
div {
|
|
text-align: center;
|
|
}
|
|
|
|
h2 {
|
|
margin-top: 5px;
|
|
}
|