day of hard work with xkirsch #2

This commit is contained in:
2024-12-10 23:02:58 +01:00
parent 6c55c1701c
commit 72fb73cb5f
18 changed files with 841 additions and 64 deletions

View File

@@ -4,10 +4,6 @@
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
}
/* Body styling */
body {
font-family: Arial, sans-serif;
@@ -75,17 +71,7 @@ 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 {
.table-header {
display: flex;
justify-content: space-around;
background-color: #444;
@@ -564,3 +550,72 @@ option {
color: white;
padding: 10px;
}
/* Graph container styling */
.graph-container {
background-color: #222;
border: 1px solid #555;
border-radius: 1em;
padding: 20px;
margin-top: 20px;
color: white;
text-align: center;
}
/* Canvas styling */
canvas {
width: 100% !important; /* Make the canvas span the whole container */
height: auto;
margin: 0 auto;
background-color: #333; /* Make the background of the graph darker */
}
/* Statistics page styling */
.statistics-container {
background-color: #222;
border: 1px solid #555;
border-radius: 1em;
padding: 20px;
margin-top: 20px;
color: white;
text-align: center;
}
.statistics-header {
margin-bottom: 20px;
}
.statistics-form {
display: flex;
justify-content: center;
align-items: center;
margin-bottom: 20px;
}
.statistics-form label {
margin: 0 10px;
}
.statistics-form input {
padding: 10px;
margin: 0 10px;
border: none;
border-radius: 5px;
background-color: #555;
color: white;
}
.statistics-form button {
background-color: #808080;
color: white;
padding: 10px 20px;
border: none;
border-radius: 5px;
cursor: pointer;
transition: transform 0.3s, box-shadow 0.3s;
}
.statistics-form button:hover {
transform: scale(1.05);
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}