Spaces:
Paused
Paused
Update assets/custom.css via AI Editor
Browse files- assets/custom.css +35 -1
assets/custom.css
CHANGED
@@ -1,10 +1,44 @@
|
|
1 |
-
/* Left column navbar light gray,
|
2 |
.dash-bootstrap .dbc-row > .dbc-col:first-child {
|
3 |
background-color: #F5F5F5 !important;
|
4 |
min-height: 100vh;
|
5 |
word-break: break-word;
|
6 |
word-wrap: break-word;
|
|
|
7 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8 |
.dash-bootstrap .dbc-row > .dbc-col:last-child {
|
9 |
background-color: #FFFFFF !important;
|
10 |
min-height: 100vh;
|
|
|
1 |
+
/* Left column navbar light gray, left-aligned bold text, transparent buttons, no underlines */
|
2 |
.dash-bootstrap .dbc-row > .dbc-col:first-child {
|
3 |
background-color: #F5F5F5 !important;
|
4 |
min-height: 100vh;
|
5 |
word-break: break-word;
|
6 |
word-wrap: break-word;
|
7 |
+
text-align: left;
|
8 |
}
|
9 |
+
.dash-bootstrap .dbc-row > .dbc-col:first-child .navbar-btn {
|
10 |
+
display: block;
|
11 |
+
width: 100%;
|
12 |
+
background: transparent;
|
13 |
+
border: none;
|
14 |
+
outline: none;
|
15 |
+
text-align: left;
|
16 |
+
font-weight: bold;
|
17 |
+
color: #1C304A;
|
18 |
+
padding: 12px 18px;
|
19 |
+
margin: 0;
|
20 |
+
cursor: pointer;
|
21 |
+
text-decoration: none !important;
|
22 |
+
box-shadow: none;
|
23 |
+
border-radius: 4px;
|
24 |
+
transition: background 0.2s, color 0.2s;
|
25 |
+
}
|
26 |
+
.dash-bootstrap .dbc-row > .dbc-col:first-child .navbar-btn:hover,
|
27 |
+
.dash-bootstrap .dbc-row > .dbc-col:first-child .navbar-btn:focus {
|
28 |
+
background-color: #DEF4F4;
|
29 |
+
color: #116F70;
|
30 |
+
text-decoration: none !important;
|
31 |
+
}
|
32 |
+
|
33 |
+
/* Remove underline from all links in left navbar */
|
34 |
+
.dash-bootstrap .dbc-row > .dbc-col:first-child a,
|
35 |
+
.dash-bootstrap .dbc-row > .dbc-col:first-child a:visited,
|
36 |
+
.dash-bootstrap .dbc-row > .dbc-col:first-child a:hover,
|
37 |
+
.dash-bootstrap .dbc-row > .dbc-col:first-child a:active {
|
38 |
+
text-decoration: none !important;
|
39 |
+
}
|
40 |
+
|
41 |
+
/* Right column white background */
|
42 |
.dash-bootstrap .dbc-row > .dbc-col:last-child {
|
43 |
background-color: #FFFFFF !important;
|
44 |
min-height: 100vh;
|