added more form styling

This commit is contained in:
s5260822 2025-03-19 00:25:32 +01:00
parent 5d89deacc6
commit 857dcff0ff

View file

@ -27,6 +27,7 @@ header {
top: 0;
left: 0;
right: 0;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
nav {
@ -64,7 +65,8 @@ body {
color: var(--primary-color);
line-height: 1.6;
padding: 20px;
margin-top: 120px
margin-top: 120px;
padding-bottom: 110px;
}
/* Heading Styling */
@ -209,6 +211,25 @@ tbody tr:hover {
background-color: var(--accent-color);
border-radius: 5px;
padding: 5px 10px 5px 10px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}
.back-link a {
text-decoration: none;
color: white
}
.filter-form {
background-color: white;
padding: 30px;
border-radius: 5px;
box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.5);
}
.filter-form form {
margin: 0;
}
select {
min-width: 200px;
}