Added functionallity to start a new Game
This commit is contained in:
Marces Zastrow
2024-12-19 11:08:22 +01:00
parent 6c6feb0185
commit 5a46333bfd
5 changed files with 163 additions and 4 deletions
+56
View File
@@ -0,0 +1,56 @@
.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;
}