added styling for members page

This commit is contained in:
s5260822 2025-03-18 20:11:40 +01:00
parent f18f25dce2
commit 4fa18fdb23
2 changed files with 23 additions and 1 deletions

View file

@ -189,4 +189,26 @@ tbody tr:hover {
/* Change button color on hover */
.add-member-button:hover {
background-color: var(--confirm-button-color-hover); /* Darker green on hover */
}
#search-button {
width: 75px;
background-color: var(--confirm-button-color);
border-radius: 5px;
border: 1px solid lightgray;
}
#search-button:hover {
background-color: var(--confirm-button-color-hover);
}
.back-link {
position: fixed;
bottom: 50px;
right: 50px;
background-color: var(--accent-color);
border-radius: 5px;
padding: 5px 10px 5px 10px;
text-decoration: none;
color: white
}

View file

@ -1,4 +1,4 @@
<form name="searchForm" action="/members" method="get">
Name : <input type="text" name="filter" value="${filter!' '}" />
<input type="submit" value="Suche" />
<input id="search-button" type="submit" value="Suche" />
</form>