Update light_mode_chatter_owl.css
Browse files- light_mode_chatter_owl.css +92 -0
light_mode_chatter_owl.css
CHANGED
|
@@ -199,6 +199,98 @@ h1, h2 {
|
|
| 199 |
box-shadow: var(--shadow);
|
| 200 |
}
|
| 201 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 202 |
|
| 203 |
@keyframes float {
|
| 204 |
0% { transform: translateY(0px); }
|
|
|
|
| 199 |
box-shadow: var(--shadow);
|
| 200 |
}
|
| 201 |
|
| 202 |
+
:root {
|
| 203 |
+
--primary-color: #FFA726;
|
| 204 |
+
--text-color: #333333;
|
| 205 |
+
--bg-color: #ffffff;
|
| 206 |
+
--card-bg: #f9f9f9;
|
| 207 |
+
--border-radius: 12px;
|
| 208 |
+
--shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
|
| 209 |
+
}
|
| 210 |
+
|
| 211 |
+
body, html {
|
| 212 |
+
margin: 0;
|
| 213 |
+
padding: 0;
|
| 214 |
+
width: 100%;
|
| 215 |
+
overflow-x: hidden;
|
| 216 |
+
}
|
| 217 |
+
|
| 218 |
+
.gradio-container {
|
| 219 |
+
background-color: var(--bg-color);
|
| 220 |
+
max-width: 100% !important;
|
| 221 |
+
font-family: 'Segoe UI', 'Helvetica Neue', sans-serif;
|
| 222 |
+
color: var(--text-color);
|
| 223 |
+
padding: 1.5em;
|
| 224 |
+
}
|
| 225 |
+
|
| 226 |
+
#top-bar {
|
| 227 |
+
display: flex;
|
| 228 |
+
justify-content: space-between;
|
| 229 |
+
align-items: center;
|
| 230 |
+
height: 48px;
|
| 231 |
+
padding: 0 16px;
|
| 232 |
+
background-color: var(--bg-color);
|
| 233 |
+
border-bottom: 1px solid #ddd;
|
| 234 |
+
position: fixed;
|
| 235 |
+
top: 0;
|
| 236 |
+
left: 250px; /* sidebar width */
|
| 237 |
+
right: 0;
|
| 238 |
+
z-index: 1000;
|
| 239 |
+
}
|
| 240 |
+
|
| 241 |
+
#collapse-left, #dark-mode-toggle {
|
| 242 |
+
font-size: 1.2em;
|
| 243 |
+
cursor: pointer;
|
| 244 |
+
user-select: none;
|
| 245 |
+
}
|
| 246 |
+
|
| 247 |
+
#sidebar {
|
| 248 |
+
position: fixed;
|
| 249 |
+
top: 0;
|
| 250 |
+
left: 0;
|
| 251 |
+
width: 250px;
|
| 252 |
+
height: 100vh;
|
| 253 |
+
background-color: #f7f7f7;
|
| 254 |
+
padding: 16px;
|
| 255 |
+
overflow-y: auto;
|
| 256 |
+
border-right: 1px solid #ddd;
|
| 257 |
+
z-index: 999;
|
| 258 |
+
}
|
| 259 |
+
|
| 260 |
+
#main-column {
|
| 261 |
+
overflow-y: auto;
|
| 262 |
+
max-height: 80vh;
|
| 263 |
+
padding-right: 8px;
|
| 264 |
+
}
|
| 265 |
+
|
| 266 |
+
#module-wrapper {
|
| 267 |
+
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
|
| 268 |
+
border-radius: 8px;
|
| 269 |
+
padding: 16px;
|
| 270 |
+
background-color: white;
|
| 271 |
+
}
|
| 272 |
+
|
| 273 |
+
#main-content {
|
| 274 |
+
margin-left: 250px; /* Sidebar width */
|
| 275 |
+
padding: 16px;
|
| 276 |
+
}
|
| 277 |
+
|
| 278 |
+
.gr-box {
|
| 279 |
+
box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
|
| 280 |
+
border-radius: 12px;
|
| 281 |
+
padding: 16px;
|
| 282 |
+
margin-bottom: 20px;
|
| 283 |
+
background-color: white;
|
| 284 |
+
}
|
| 285 |
+
|
| 286 |
+
body.dark-mode {
|
| 287 |
+
--bg-color: #1e1e1e;
|
| 288 |
+
--text-color: #f0f0f0;
|
| 289 |
+
--card-bg: #2a2a2a;
|
| 290 |
+
--primary-color: #ffb74d;
|
| 291 |
+
}
|
| 292 |
+
|
| 293 |
+
|
| 294 |
|
| 295 |
@keyframes float {
|
| 296 |
0% { transform: translateY(0px); }
|