This commit is contained in:
2024-12-09 20:30:19 +01:00
parent d080b6287c
commit 9b5f3b23fb
13 changed files with 636 additions and 43 deletions

View File

@@ -71,6 +71,26 @@ footer {
right: 0;
}
.navbar-users-table {
display: flex;
justify-content: space-around;
background-color: #444;
padding: 10px;
margin-top: 1.5em;
border-top-left-radius: 0.5em;
border-top-right-radius: 0.5em;
}
.navbar-orders-table {
display: flex;
justify-content: space-around;
background-color: #444;
padding: 10px;
margin-top: 1.5em;
border-top-left-radius: 0.5em;
border-top-right-radius: 0.5em;
}
/* Navbar */
.navbar {
display: flex;
@@ -111,6 +131,7 @@ footer {
.container {
margin: auto;
width: 75%;
text-align: center;
}
/* Section styles */
@@ -374,9 +395,8 @@ footer {
table {
width: 100%;
border-collapse: collapse;
margin: 20px 0;
font-size: 18px;
text-align: left;
text-align: center;
}
table th, table td {
@@ -515,3 +535,28 @@ table tr:hover {
border-bottom-left-radius: 1em;
z-index: 1000;
}
/* Dropdown menu styles */
select {
width: 100%;
padding: 10px;
margin: 5px 0 20px;
border: none;
border-radius: 5px;
background-color: #555;
color: white;
font-size: 16px;
}
select:focus {
outline: none;
box-shadow: 0 0 5px rgba(81, 203, 238, 1);
border: 1px solid rgba(81, 203, 238, 1);
}
/* Option styles */
option {
background-color: #333;
color: white;
padding: 10px;
}