Spaces:
Paused
Paused
Update assets/custom.css
Browse files- assets/custom.css +72 -0
assets/custom.css
CHANGED
@@ -42,4 +42,76 @@ body {
|
|
42 |
.card {
|
43 |
background-color: #FFFFFF;
|
44 |
border-color: #E0E0E0;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
45 |
}
|
|
|
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 |
+
/* Additional styles for better visual separation */
|
61 |
+
.custom-button {
|
62 |
+
text-align: left;
|
63 |
+
padding: 10px;
|
64 |
+
margin-bottom: 5px;
|
65 |
+
border-radius: 5px;
|
66 |
+
transition: background-color 0.3s;
|
67 |
+
}
|
68 |
+
|
69 |
+
.custom-button:hover {
|
70 |
+
background-color: #DEF4F4;
|
71 |
+
}
|
72 |
+
|
73 |
+
/* Styling for the file list */
|
74 |
+
#file-list > div {
|
75 |
+
background-color: #FFFFFF;
|
76 |
+
padding: 5px;
|
77 |
+
margin-bottom: 5px;
|
78 |
+
border-radius: 3px;
|
79 |
+
display: flex;
|
80 |
+
align-items: center;
|
81 |
+
}
|
82 |
+
|
83 |
+
#file-list button {
|
84 |
+
background-color: #E0E0E0;
|
85 |
+
border: none;
|
86 |
+
border-radius: 50%;
|
87 |
+
width: 20px;
|
88 |
+
height: 20px;
|
89 |
+
display: flex;
|
90 |
+
align-items: center;
|
91 |
+
justify-content: center;
|
92 |
+
margin-right: 10px;
|
93 |
+
cursor: pointer;
|
94 |
+
}
|
95 |
+
|
96 |
+
#file-list button:hover {
|
97 |
+
background-color: #1C304A;
|
98 |
+
color: white;
|
99 |
+
}
|
100 |
+
|
101 |
+
/* Styling for the document preview */
|
102 |
+
#document-preview {
|
103 |
+
background-color: #FFFFFF;
|
104 |
+
border: 1px solid #E0E0E0;
|
105 |
+
border-radius: 5px;
|
106 |
+
padding: 15px;
|
107 |
+
margin-bottom: 15px;
|
108 |
+
}
|
109 |
+
|
110 |
+
/* Styling for the chat input and button */
|
111 |
+
#chat-input {
|
112 |
+
border-color: #E0E0E0;
|
113 |
+
}
|
114 |
+
|
115 |
+
#btn-send-chat {
|
116 |
+
margin-left: 10px;
|
117 |
}
|