Spaces:
Runtime error
Runtime error
Commit ·
7585217
1
Parent(s): 02b7502
update
Browse files- project/static/main.css +22 -3
project/static/main.css
CHANGED
|
@@ -11,7 +11,7 @@
|
|
| 11 |
|
| 12 |
/* Crystal Clear Glass - slightly more transparent for "cool" factor */
|
| 13 |
--bg-card: rgba(255, 255, 255, 0.82);
|
| 14 |
-
--bg-navbar: rgba(255, 255, 255, 0.
|
| 15 |
|
| 16 |
/* Crisp Typography */
|
| 17 |
--text-main: #2d3436;
|
|
@@ -102,11 +102,10 @@ a {
|
|
| 102 |
/* Mobile Nav Menu Style */
|
| 103 |
@media (max-width: 991px) {
|
| 104 |
.navbar-collapse {
|
| 105 |
-
background:
|
| 106 |
margin-top: 1rem;
|
| 107 |
padding: 1rem;
|
| 108 |
border-radius: 15px;
|
| 109 |
-
box-shadow: var(--shadow-md);
|
| 110 |
}
|
| 111 |
}
|
| 112 |
|
|
@@ -239,4 +238,24 @@ a {
|
|
| 239 |
height: 90px;
|
| 240 |
width: 90px;
|
| 241 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 242 |
}
|
|
|
|
| 11 |
|
| 12 |
/* Crystal Clear Glass - slightly more transparent for "cool" factor */
|
| 13 |
--bg-card: rgba(255, 255, 255, 0.82);
|
| 14 |
+
--bg-navbar: rgba(255, 255, 255, 0.747);
|
| 15 |
|
| 16 |
/* Crisp Typography */
|
| 17 |
--text-main: #2d3436;
|
|
|
|
| 102 |
/* Mobile Nav Menu Style */
|
| 103 |
@media (max-width: 991px) {
|
| 104 |
.navbar-collapse {
|
| 105 |
+
background: rgb(255, 255, 255);
|
| 106 |
margin-top: 1rem;
|
| 107 |
padding: 1rem;
|
| 108 |
border-radius: 15px;
|
|
|
|
| 109 |
}
|
| 110 |
}
|
| 111 |
|
|
|
|
| 238 |
height: 90px;
|
| 239 |
width: 90px;
|
| 240 |
}
|
| 241 |
+
}
|
| 242 |
+
|
| 243 |
+
/* Style for the actual Hamburger Button */
|
| 244 |
+
.navbar-toggler {
|
| 245 |
+
border: none;
|
| 246 |
+
background: rgba(108, 92, 231, 0.1); /* Subtle purple glass tint */
|
| 247 |
+
backdrop-filter: blur(5px);
|
| 248 |
+
padding: 8px;
|
| 249 |
+
border-radius: 10px;
|
| 250 |
+
transition: var(--transition-cubic);
|
| 251 |
+
}
|
| 252 |
+
|
| 253 |
+
.navbar-toggler:focus {
|
| 254 |
+
box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.2);
|
| 255 |
+
outline: none;
|
| 256 |
+
}
|
| 257 |
+
|
| 258 |
+
/* Make the 3-line icon purple to match your accent */
|
| 259 |
+
.navbar-toggler-icon {
|
| 260 |
+
filter: invert(45%) sepia(50%) saturate(3000%) hue-rotate(220deg) brightness(95%) contrast(90%);
|
| 261 |
}
|