work-tracing/static/css/dashboard.css
ilia-gurielidze-autstand 9e6d0a6911 first commit
2025-05-05 12:12:46 +04:00

62 lines
1.3 KiB
CSS

body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: #f8f9fa;
padding: 20px;
}
.card {
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
margin-bottom: 20px;
}
.card-header {
background-color: #e9ecef; /* Slightly darker header */
font-weight: 600;
}
.btn-filter {
margin-right: 5px;
}
.table th {
background-color: #e9ecef; /* Match card header */
font-weight: 600;
}
#reportTable th:nth-child(1), /* User column */
#reportTable td:nth-child(1) {
width: 20%;
}
#reportTable th:nth-child(2), /* Period column */
#reportTable td:nth-child(2) {
width: 30%;
}
#reportTable th:nth-child(3), /* Duration column */
#reportTable td:nth-child(3) {
width: 20%;
text-align: center;
}
#reportTable th:nth-child(4), /* First Login Time column */
#reportTable td:nth-child(4) {
width: 30%;
text-align: center;
}
.spinner-border {
width: 1.5rem;
height: 1.5rem;
}
.user-link {
color: #0d6efd;
text-decoration: none;
cursor: pointer;
}
.user-link:hover {
text-decoration: underline;
}
.modal-body table th:nth-child(1) {
width: 25%;
}
.modal-body table th:nth-child(2),
.modal-body table th:nth-child(3) {
width: 30%;
}
.modal-body table th:nth-child(4),
.modal-body table td:nth-child(4) {
width: 15%;
text-align: center;
}