This commit is contained in:
Abdullah-M0
2025-04-04 09:21:47 +02:00
parent 6e29dead3e
commit b21583235d
2 changed files with 55 additions and 3 deletions

View File

@@ -52,4 +52,38 @@
.size {
width: 33.33%;
height: 25%;
}
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f8f9fa;
text-align: center;
}
.container {
max-width: 600px;
margin: 50px auto;
background: white;
padding: 20px;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
input, textarea {
width: 100%;
padding: 10px;
margin: 10px 0;
border: 1px solid #ccc;
border-radius: 5px;
}
button {
background-color: #28a745;
color: white;
padding: 10px 15px;
border: none;
border-radius: 5px;
cursor: pointer;
}
button:hover {
background-color: #218838;
}