bluenevus commited on
Commit
7eee39f
·
1 Parent(s): 34fe234

Update assets/custom.css via AI Editor

Browse files
Files changed (1) hide show
  1. assets/custom.css +11 -67
assets/custom.css CHANGED
@@ -1,97 +1,41 @@
1
- /* Left panel background */
2
- .dash-bootstrap .dbc-col:first-child,
3
- .dash-bootstrap .dbc-col:nth-child(1),
4
- .dash-bootstrap .dbc-row > .col-3,
5
- .dash-bootstrap .dbc-row > [class*="col-3"] {
6
- background-color: #F5F5F5 !important;
7
  }
8
 
9
- /* Left panel text: bold, left-aligned, no underline */
10
- .dash-bootstrap .dbc-col:first-child,
11
- .dash-bootstrap .dbc-col:nth-child(1),
12
- .dash-bootstrap .dbc-row > .col-3,
13
- .dash-bootstrap .dbc-row > [class*="col-3"] {
14
- font-weight: bold !important;
15
- text-align: left !important;
16
- }
17
-
18
- .dash-bootstrap .dbc-col:first-child a,
19
- .dash-bootstrap .dbc-col:nth-child(1) a,
20
- .dash-bootstrap .dbc-row > .col-3 a,
21
- .dash-bootstrap .dbc-row > [class*="col-3"] a {
22
- text-decoration: none !important;
23
- font-weight: bold !important;
24
- color: inherit !important;
25
- text-align: left !important;
26
- }
27
-
28
- /* Remove underline from all left panel clickable items */
29
- .custom-button,
30
- .custom-button a {
31
- text-decoration: none !important;
32
- font-weight: bold !important;
33
- color: inherit !important;
34
- background: transparent !important;
35
- border: none !important;
36
- text-align: left !important;
37
- box-shadow: none !important;
38
- width: 100% !important;
39
- display: block !important;
40
- cursor: pointer;
41
- outline: none !important;
42
- transition: background 0.2s;
43
- }
44
-
45
- /* Light color on hover for left panel clickable items */
46
- .custom-button:hover,
47
- .custom-button:focus,
48
- .custom-button:active {
49
- background-color: #E0E0E0 !important;
50
- color: inherit !important;
51
- text-decoration: none !important;
52
- }
53
-
54
- /* Remove underline from all links in left panel */
55
- .dash-bootstrap .dbc-col:first-child a,
56
- .dash-bootstrap .dbc-col:nth-child(1) a,
57
- .dash-bootstrap .dbc-row > .col-3 a,
58
- .dash-bootstrap .dbc-row > [class*="col-3"] a {
59
- text-decoration: none !important;
60
- }
61
-
62
- /* Button color rules */
63
  .btn-primary {
64
  background-color: #1C304A;
65
  border-color: #1C304A;
66
  }
 
67
  .btn-primary:hover {
68
  background-color: #116F70;
69
  border-color: #116F70;
70
  }
 
71
  .btn-secondary {
72
  background-color: #116F70;
73
  border-color: #116F70;
74
  }
 
75
  .btn-secondary:hover {
76
  background-color: #00AEAF;
77
  border-color: #00AEAF;
78
  }
 
79
  .btn-tertiary {
80
  background-color: #E0E0E0;
81
  border-color: #E0E0E0;
82
  color: #1C304A;
83
  }
 
84
  .btn-tertiary:hover {
85
  background-color: #DEF4F4;
86
  border-color: #DEF4F4;
87
  color: #1C304A;
88
  }
89
 
90
- /* Ensure word wrap for any text boxes */
91
- textarea,
92
- input[type="text"],
93
- input[type="search"] {
94
- white-space: pre-wrap !important;
95
- word-break: break-word !important;
96
- overflow-wrap: break-word !important;
97
  }
 
1
+ body {
2
+ background-color: #F7F7F7;
3
+ color: #454545;
 
 
 
4
  }
5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6
  .btn-primary {
7
  background-color: #1C304A;
8
  border-color: #1C304A;
9
  }
10
+
11
  .btn-primary:hover {
12
  background-color: #116F70;
13
  border-color: #116F70;
14
  }
15
+
16
  .btn-secondary {
17
  background-color: #116F70;
18
  border-color: #116F70;
19
  }
20
+
21
  .btn-secondary:hover {
22
  background-color: #00AEAF;
23
  border-color: #00AEAF;
24
  }
25
+
26
  .btn-tertiary {
27
  background-color: #E0E0E0;
28
  border-color: #E0E0E0;
29
  color: #1C304A;
30
  }
31
+
32
  .btn-tertiary:hover {
33
  background-color: #DEF4F4;
34
  border-color: #DEF4F4;
35
  color: #1C304A;
36
  }
37
 
38
+ .card {
39
+ background-color: #FFFFFF;
40
+ border-color: #E0E0E0;
 
 
 
 
41
  }