first commit

This commit is contained in:
2024-11-10 23:50:03 +01:00
commit b6b399febd
9 changed files with 486 additions and 0 deletions

88
css/style.css Normal file
View File

@@ -0,0 +1,88 @@
body {
background-color: grey;
}
div.container {
background-color: white;
width: 60%;
margin: auto;
padding: 30px 10%;
}
table.schrauben {
text-align: center;
margin: auto;
margin-top: 20px;
width: 100%;
border: 1px solid black;
table-layout: fixed;
}
td.right {
text-align: right;
}
td.left {
text-align: left;
padding: 0px 10px;
}
textarea {
width: 100%;
height: 100px;
margin: 10px 0px;
}
button {
margin: 10px 0px;
}
a {
color: black;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
.maintenance {
margin: auto;
padding: 10px;
text-align: center;
border: 2px solid red;
color: red;
}
input {
outline: none;
border: 1px solid grey;
padding: 3px;
border-radius: 2px;
}
input.error {
border-color: red;
}
&:valid {
border-style: auto;
border-color: inherit;
}
p.error_message {
color: red;
text-align: center;
}
.grid-container {
display: grid;
grid-template-columns: auto auto;
margin: auto;
gap: 5px;
}
.form_feedback {
grid-column-start: 1;
grid-column-end: 3;
text-align: right;
color: red;
display: none;
font-size: small;
}