Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 4 additions & 5 deletions css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,9 @@ body.dashboard-page {
display: block;
padding: 0;
min-height: 100vh;
/* Add padding to prevent content from going under sticky header */
padding-top: 70px;
padding-top: 70px; /* Add this line */
}


/* ======================================= */
/* === LOGIN & REGISTER FORM STYLES === */
/* ======================================= */
Expand Down Expand Up @@ -144,17 +142,18 @@ body.dashboard-page {
/* === DASHBOARD LAYOUT & STYLES === */
/* ======================================= */

/* --- Sticky, Transparent Header --- */
/* --- Sticky, Transparent Header --- */
.header {
position: sticky; /* Make it stick */
top: 0; /* Stick it to the top */
z-index: 1000; /* Keep it above other content */

/* Semi-transparent background with blur */
background: rgba(0, 123, 255, 0.8); /* Blue with 80% opacity */
backdrop-filter: blur(10px); /* Frosted glass effect */
-webkit-backdrop-filter: blur(10px); /* For Safari */

color: white;
padding: 0 2.5rem;
display: flex;
Expand Down