updated to see help page

This commit is contained in:
Quality System Admin
2025-10-27 21:32:10 +02:00
parent d8e6dd1c78
commit dc1f23c26b
14 changed files with 604 additions and 3 deletions

View File

@@ -146,4 +146,111 @@ body.dark-mode header {
body.dark-mode .user-info {
color: #ccc;
}
/* ==========================================================================
FLOATING BUTTONS
========================================================================== */
/* Floating Help Button */
.floating-help-btn {
position: fixed;
top: 80px; /* Position below the header */
right: 20px;
z-index: 1000;
width: 50px;
height: 50px;
border-radius: 50%;
background: linear-gradient(135deg, #17a2b8, #138496);
box-shadow: 0 4px 12px rgba(0,0,0,0.15);
display: flex;
align-items: center;
justify-content: center;
transition: all 0.3s ease;
}
.floating-help-btn:hover {
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(0,0,0,0.25);
background: linear-gradient(135deg, #138496, #0f6674);
}
.floating-help-btn a {
color: white;
text-decoration: none;
font-size: 18px;
display: flex;
align-items: center;
justify-content: center;
width: 100%;
height: 100%;
border-radius: 50%;
}
.floating-help-btn a:hover {
color: white;
text-decoration: none;
}
/* Floating Back Button */
.floating-back-btn {
position: fixed;
top: 80px; /* Position below the header */
left: 20px;
z-index: 1000;
width: 50px;
height: 50px;
border-radius: 50%;
background: linear-gradient(135deg, #6c757d, #545b62);
box-shadow: 0 4px 12px rgba(0,0,0,0.15);
display: flex;
align-items: center;
justify-content: center;
transition: all 0.3s ease;
cursor: pointer;
}
.floating-back-btn:hover {
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(0,0,0,0.25);
background: linear-gradient(135deg, #545b62, #495057);
}
.floating-back-btn a,
.floating-back-btn button {
color: white;
text-decoration: none;
font-size: 16px;
display: flex;
align-items: center;
justify-content: center;
width: 100%;
height: 100%;
border-radius: 50%;
background: none;
border: none;
cursor: pointer;
}
.floating-back-btn a:hover,
.floating-back-btn button:hover {
color: white;
text-decoration: none;
}
/* Dark mode styles for floating buttons */
body.dark-mode .floating-help-btn {
background: linear-gradient(135deg, #0dcaf0, #0aa2c0);
}
body.dark-mode .floating-help-btn:hover {
background: linear-gradient(135deg, #0aa2c0, #087990);
}
body.dark-mode .floating-back-btn {
background: linear-gradient(135deg, #495057, #343a40);
}
body.dark-mode .floating-back-btn:hover {
background: linear-gradient(135deg, #343a40, #212529);
}