5a46333bfd
Added functionallity to start a new Game
57 lines
775 B
CSS
57 lines
775 B
CSS
.create-game-page {
|
|
max-width: 600px;
|
|
margin: 0 auto;
|
|
padding: 20px;
|
|
background: #2e2e3f;
|
|
border-radius: 8px;
|
|
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
.create-game-page h1 {
|
|
text-align: center;
|
|
}
|
|
|
|
.form-group {
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
label {
|
|
display: block;
|
|
margin-bottom: 5px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
input,
|
|
textarea {
|
|
width: calc(100% - 22px);
|
|
padding: 10px;
|
|
border-radius: 4px;
|
|
resize: none;
|
|
}
|
|
|
|
button {
|
|
display: block;
|
|
width: 100%;
|
|
padding: 10px;
|
|
background-color: #007bff;
|
|
color: white;
|
|
font-size: 16px;
|
|
border: none;
|
|
border-radius: 4px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
button:hover {
|
|
background-color: #0056b3;
|
|
}
|
|
|
|
.error-message {
|
|
color: red;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.success-message {
|
|
color: green;
|
|
font-weight: bold;
|
|
}
|