Updated index page + Added about and result pages

This commit is contained in:
2023-12-05 15:26:57 +01:00
parent 6d504394ef
commit e71d656d0e
11 changed files with 616 additions and 148 deletions

View File

@@ -20,4 +20,58 @@
.noUi-target.noUi-horizontal .noUi-tooltip {
transform: scale(1) rotate(-45deg) translate(0px, 4px);
}
h4 {
font-size: 1.8rem;
}
label {
font-size: 1.2rem;
}
.input-field > label {
font-size: 1.2rem;
}
.table-wrapper {
overflow-x: scroll;
overflow-y: scroll;
height: 600px;
border: #555555;
}
.table-wrapper thead th {
position: sticky;
top: 0;
}
.table-wrapper thead th{
cursor: pointer;
}
.tr-link {
cursor: pointer;
}
table {
table-layout: fixed;
}
th {
width: 300px;
padding: 10px 0 10px;
background-color: #cccccc;
text-align: center;
border-left-radius: 2px;
border-right: solid 1px #bbbbbb;
border-left: solid 1px #bbbbbb;
}
td {
width: 300px;
padding: 10px 0 10px;
text-align: center;
border-right: solid 1px #bbbbbb;
border-left: solid 1px #bbbbbb;
}