remove background from nav

This commit is contained in:
M Sarmad Qadeer
2025-10-19 17:17:58 +05:00
parent 443493c9d2
commit ee27d17484

View File

@@ -12,7 +12,6 @@ body.change-nav-color {
@media screen and (min-width: 950px) {
.logo {
background: rgba(255, 255, 255, 0.05);
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
border-bottom-right-radius: 12px;
@@ -20,12 +19,7 @@ body.change-nav-color {
transition: all 0.3s ease;
}
.dark .logo {
background: rgba(19, 29, 73, 0.005);
}
nav#menu {
background: rgba(255, 255, 255, 0.05);
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
padding: 0px 50px;
@@ -34,22 +28,13 @@ body.change-nav-color {
transition: all 0.3s ease;
}
.dark nav#menu {
background: rgba(19, 29, 73, 0.005);
}
.right-links {
background: rgba(255, 255, 255, 0.05);
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
border-bottom-left-radius: 12px;
padding-left: 24px;
transition: all 0.3s ease;
}
.dark .right-links {
background: rgba(19, 29, 73, 0.005);
}
}
/* NavBar */