Spaces:
Paused
Paused
Update assets/custom.css
Browse files- assets/custom.css +67 -37
assets/custom.css
CHANGED
@@ -3,8 +3,33 @@ body {
|
|
3 |
color: #454545;
|
4 |
}
|
5 |
|
6 |
-
.
|
7 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8 |
}
|
9 |
|
10 |
.btn-primary {
|
@@ -27,55 +52,40 @@ body {
|
|
27 |
border-color: #00AEAF;
|
28 |
}
|
29 |
|
30 |
-
.btn-
|
31 |
-
background-color: #
|
32 |
-
border-color: #
|
33 |
-
color: #1C304A;
|
34 |
-
}
|
35 |
-
|
36 |
-
.btn-tertiary:hover {
|
37 |
-
background-color: #DEF4F4;
|
38 |
-
border-color: #DEF4F4;
|
39 |
-
color: #1C304A;
|
40 |
-
}
|
41 |
-
|
42 |
-
.card {
|
43 |
-
background-color: #FFFFFF;
|
44 |
-
border-color: #E0E0E0;
|
45 |
-
}
|
46 |
-
|
47 |
-
/* Custom styles for left and right panes */
|
48 |
-
.left-pane {
|
49 |
-
background-color: #eeeeee;
|
50 |
-
padding: 15px;
|
51 |
-
border-radius: 5px;
|
52 |
-
}
|
53 |
-
|
54 |
-
.right-pane {
|
55 |
-
background-color: white;
|
56 |
-
padding: 15px;
|
57 |
-
border-radius: 5px;
|
58 |
}
|
59 |
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
}
|
64 |
|
65 |
-
/*
|
66 |
.custom-button {
|
67 |
text-align: left;
|
68 |
padding: 10px;
|
69 |
margin-bottom: 5px;
|
70 |
border-radius: 5px;
|
71 |
transition: background-color 0.3s;
|
|
|
72 |
}
|
73 |
|
74 |
.custom-button:hover {
|
75 |
background-color: #DEF4F4;
|
76 |
}
|
77 |
|
78 |
-
/*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
79 |
#file-list > div {
|
80 |
background-color: #FFFFFF;
|
81 |
padding: 5px;
|
@@ -103,7 +113,7 @@ a, a:hover, a:focus {
|
|
103 |
color: white;
|
104 |
}
|
105 |
|
106 |
-
/*
|
107 |
#document-preview {
|
108 |
background-color: #FFFFFF;
|
109 |
border: 1px solid #E0E0E0;
|
@@ -112,11 +122,31 @@ a, a:hover, a:focus {
|
|
112 |
margin-bottom: 15px;
|
113 |
}
|
114 |
|
115 |
-
/*
|
116 |
#chat-input {
|
117 |
border-color: #E0E0E0;
|
118 |
}
|
119 |
|
120 |
#btn-send-chat {
|
121 |
margin-left: 10px;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
122 |
}
|
|
|
3 |
color: #454545;
|
4 |
}
|
5 |
|
6 |
+
.container-fluid {
|
7 |
+
padding-left: 0;
|
8 |
+
padding-right: 0;
|
9 |
+
}
|
10 |
+
|
11 |
+
.row {
|
12 |
+
margin-left: 0;
|
13 |
+
margin-right: 0;
|
14 |
+
}
|
15 |
+
|
16 |
+
/* Left pane styles */
|
17 |
+
.col-3 {
|
18 |
+
background-color: #eeeeee;
|
19 |
+
padding: 15px;
|
20 |
+
border-radius: 5px;
|
21 |
+
}
|
22 |
+
|
23 |
+
/* Right pane styles */
|
24 |
+
.col-9 {
|
25 |
+
background-color: white;
|
26 |
+
padding: 15px;
|
27 |
+
border-radius: 5px;
|
28 |
+
}
|
29 |
+
|
30 |
+
/* Remove underlines from all text */
|
31 |
+
a, a:hover, a:focus, button, .btn-link {
|
32 |
+
text-decoration: none !important;
|
33 |
}
|
34 |
|
35 |
.btn-primary {
|
|
|
52 |
border-color: #00AEAF;
|
53 |
}
|
54 |
|
55 |
+
.btn-success {
|
56 |
+
background-color: #28a745;
|
57 |
+
border-color: #28a745;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
58 |
}
|
59 |
|
60 |
+
.btn-success:hover {
|
61 |
+
background-color: #218838;
|
62 |
+
border-color: #1e7e34;
|
63 |
}
|
64 |
|
65 |
+
/* Custom button styles */
|
66 |
.custom-button {
|
67 |
text-align: left;
|
68 |
padding: 10px;
|
69 |
margin-bottom: 5px;
|
70 |
border-radius: 5px;
|
71 |
transition: background-color 0.3s;
|
72 |
+
color: #1C304A;
|
73 |
}
|
74 |
|
75 |
.custom-button:hover {
|
76 |
background-color: #DEF4F4;
|
77 |
}
|
78 |
|
79 |
+
/* File upload area */
|
80 |
+
#upload-document {
|
81 |
+
border: 1px dashed #E0E0E0;
|
82 |
+
border-radius: 5px;
|
83 |
+
padding: 10px;
|
84 |
+
text-align: center;
|
85 |
+
margin-bottom: 15px;
|
86 |
+
}
|
87 |
+
|
88 |
+
/* File list styles */
|
89 |
#file-list > div {
|
90 |
background-color: #FFFFFF;
|
91 |
padding: 5px;
|
|
|
113 |
color: white;
|
114 |
}
|
115 |
|
116 |
+
/* Document preview area */
|
117 |
#document-preview {
|
118 |
background-color: #FFFFFF;
|
119 |
border: 1px solid #E0E0E0;
|
|
|
122 |
margin-bottom: 15px;
|
123 |
}
|
124 |
|
125 |
+
/* Chat input and button */
|
126 |
#chat-input {
|
127 |
border-color: #E0E0E0;
|
128 |
}
|
129 |
|
130 |
#btn-send-chat {
|
131 |
margin-left: 10px;
|
132 |
+
}
|
133 |
+
|
134 |
+
/* Loading indicator */
|
135 |
+
.dash-spinner {
|
136 |
+
margin: 0 auto;
|
137 |
+
}
|
138 |
+
|
139 |
+
/* Markdown content */
|
140 |
+
.markdown-body {
|
141 |
+
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
|
142 |
+
font-size: 16px;
|
143 |
+
line-height: 1.5;
|
144 |
+
word-wrap: break-word;
|
145 |
+
}
|
146 |
+
|
147 |
+
/* Ensure buttons don't wrap text */
|
148 |
+
.btn {
|
149 |
+
white-space: nowrap;
|
150 |
+
overflow: hidden;
|
151 |
+
text-overflow: ellipsis;
|
152 |
}
|