frontend structiure generated

This commit is contained in:
2025-04-17 17:00:15 +02:00
parent 22b6f3bd2a
commit 3ee632b683
15 changed files with 720 additions and 30 deletions

39
wagfarm-ui/css/forms.css Normal file
View File

@@ -0,0 +1,39 @@
/* forms.css */
.form-group {
margin-bottom: 1rem;
}
label {
display: block;
margin-bottom: 0.5rem;
font-weight: bold;
}
input[type="text"],
input[type="date"],
textarea,
select {
width: 100%;
padding: 0.5rem;
border: 1px solid #ddd;
border-radius: 3px;
font-size: 1rem;
}
textarea {
height: 100px;
}
button[type="submit"] {
background: #4a7c59;
color: white;
border: none;
padding: 0.7rem 1rem;
cursor: pointer;
font-size: 1rem;
border-radius: 3px;
}
button[type="submit"]:hover {
background: #3d6549;
}