first commit

This commit is contained in:
adrian
2026-02-10 21:53:25 +01:00
commit 338ee03515
3 changed files with 126 additions and 0 deletions

64
style.css Normal file
View File

@ -0,0 +1,64 @@
body {
background-color: #2b2a34;
}
.replaceTitle {
display: flex;
justify-content: center;
color: white;
}
.inputField {
display: flex;
justify-content: center;
}
.removeWhiteSpaceInput {
border: 2px solid black;
border-radius: 5px;
}
.responseField {
display: flex;
justify-content: center;
align-items: center;
max-width: fit-content;
margin: 5px auto;
}
.responseText {
display: flex;
justify-content: center;
border: 2px solid black;
border-radius: 5px;
max-width: 300px;
margin: 5px auto;
background-color: white;
width: 200px;
height: 20px;
}
.responseButton {
display: flex;
justify-content: center;
}
.prodDateTitle {
display: flex;
justify-content: center;
color: white;
}
.prodDateField {
display: flex;
justify-content: center;
align-items: center;
max-width: fit-content;
margin: 5px auto;
}
.prodDateInput {
display: flex;
justify-content: center;
border: 2px solid black;
border-radius: 5px;
max-width: 300px;
margin: 5px auto;
background-color: white;
width: 200px;
height: 20px;
}