Spaces:
Paused
Paused
File size: 1,382 Bytes
7ef7190 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 |
body {
font-family: Arial, sans-serif;
background-color: #1a1a1a;
color: #ffffff;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
.container {
text-align: center;
background-color: #2a2a2a;
padding: 2rem;
border-radius: 10px;
box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}
h1 {
margin-bottom: 2rem;
}
button {
background-color: #4caf50;
border: none;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
border-radius: 5px;
transition: background-color 0.3s;
}
button:hover {
background-color: #45a049;
}
input[type="text"] {
padding: 10px;
font-size: 16px;
border: 2px solid #4caf50;
border-radius: 5px;
margin-right: 10px;
background-color: #333;
color: white;
}
#sessionInfo,
#joinGame {
margin-top: 20px;
}
#hangmanSvg {
width: 200px;
height: 220px;
margin: 20px auto;
}
.word-display {
font-size: 24px;
letter-spacing: 5px;
margin: 20px 0;
}
.guesses {
margin-bottom: 20px;
}
.player-turn {
font-weight: bold;
margin-bottom: 10px;
}
#guessInput {
width: 30px;
text-align: center;
}
#message {
margin-top: 20px;
font-weight: bold;
}
|