Spaces:
Paused
Paused
Update assets/custom.css via AI Editor
Browse files- assets/custom.css +41 -1
assets/custom.css
CHANGED
|
@@ -1 +1,41 @@
|
|
| 1 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
/* Left column navbar (light gray) */
|
| 2 |
+
#left-navbar {
|
| 3 |
+
background-color: #f8f9fa !important;
|
| 4 |
+
}
|
| 5 |
+
|
| 6 |
+
/* Right column main (white background) */
|
| 7 |
+
#right-main {
|
| 8 |
+
background-color: #fff !important;
|
| 9 |
+
}
|
| 10 |
+
|
| 11 |
+
/* Primary button */
|
| 12 |
+
.btn-primary {
|
| 13 |
+
background-color: #1C304A;
|
| 14 |
+
border-color: #1C304A;
|
| 15 |
+
}
|
| 16 |
+
.btn-primary:hover {
|
| 17 |
+
background-color: #116F70;
|
| 18 |
+
border-color: #116F70;
|
| 19 |
+
}
|
| 20 |
+
|
| 21 |
+
/* Secondary button */
|
| 22 |
+
.btn-secondary {
|
| 23 |
+
background-color: #116F70;
|
| 24 |
+
border-color: #116F70;
|
| 25 |
+
}
|
| 26 |
+
.btn-secondary:hover {
|
| 27 |
+
background-color: #00AEAF;
|
| 28 |
+
border-color: #00AEAF;
|
| 29 |
+
}
|
| 30 |
+
|
| 31 |
+
/* Tertiary button */
|
| 32 |
+
.btn-tertiary {
|
| 33 |
+
background-color: #E0E0E0;
|
| 34 |
+
border-color: #E0E0E0;
|
| 35 |
+
color: #1C304A;
|
| 36 |
+
}
|
| 37 |
+
.btn-tertiary:hover {
|
| 38 |
+
background-color: #DEF4F4;
|
| 39 |
+
border-color: #DEF4F4;
|
| 40 |
+
color: #1C304A;
|
| 41 |
+
}
|