feat: Add intial site
All checks were successful
Build Docker / BuildImage (push) Successful in 50s

This commit is contained in:
2025-03-06 15:15:24 +11:00
parent 66620204ac
commit 6d7019bba5
6 changed files with 284 additions and 5 deletions

View File

@@ -11,6 +11,52 @@ h1 {
margin-top: 10%;
text-align: center;
}
form {
margin: 20px 0;
}
label {
display: block;
margin: 10px 0 5px;
}
input {
padding: 5px;
width: 80%;
max-width: 300px;
}
button {
margin-top: 10px;
padding: 10px 20px;
background-color: #ffffff;
color: #000000;
border: none;
cursor: pointer;
}
button:hover {
background-color: #dddddd;
}
#results {
margin-top: 20px;
text-align: left;
}
.results-container {
margin-top: 20px;
text-align: center;
}
.results-table {
width: 80%;
margin: 0 auto;
border-collapse: collapse;
}
.results-table th, .results-table td {
border: 1px solid #ffffff;
padding: 10px;
}
.results-table th {
background-color: #333333;
}
.results-table td {
background-color: #444444;
}
a {
color: #ffffff;
text-decoration: none;