ginipick commited on
Commit
89eb425
·
verified ·
1 Parent(s): 83e2123

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +23 -10
app.py CHANGED
@@ -273,13 +273,10 @@ def create_ui():
273
 
274
  /* AI 코딩 탭의 Chatbot 스타일 수정 */
275
  .chatbot, .chatbot *, .wrap, .wrap * {
276
- background-color: transparent !important;
277
- border: none !important;
278
- box-shadow: none !important;
279
  }
280
  .chatbot .message, .chatbot .user-message, .chatbot .bot-message {
281
- background-color: transparent !important;
282
- color: #1a1a1a !important;
283
  padding: 10px 15px;
284
  margin: 5px 0;
285
  border-radius: 0;
@@ -296,35 +293,51 @@ def create_ui():
296
  border-radius: 4px;
297
  padding: 10px;
298
  overflow-x: auto;
 
299
  }
300
  .chatbot code {
301
  background-color: #f0f0f0 !important;
302
  padding: 2px 4px;
303
  border-radius: 4px;
304
  font-family: monospace;
 
305
  }
306
  .chatbot p, .chatbot span, .chatbot div {
307
- background-color: transparent !important;
308
  margin: 5px 0;
309
- color: #1a1a1a !important;
310
  }
311
  .chatbot * {
312
  word-wrap: break-word !important;
313
  white-space: pre-wrap !important;
314
  }
315
  .chatbot h1, .chatbot h2, .chatbot h3, .chatbot h4, .chatbot h5, .chatbot h6 {
316
- color: #0056b3 !important;
317
  }
318
  .chatbot a {
319
- color: #0056b3 !important;
320
  text-decoration: underline !important;
321
  }
322
  .chatbot ul, .chatbot ol {
323
- color: #1a1a1a !important;
324
  padding-left: 20px !important;
325
  }
326
  .chatbot li {
327
  margin-bottom: 5px !important;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
328
  }
329
  """
330
 
 
273
 
274
  /* AI 코딩 탭의 Chatbot 스타일 수정 */
275
  .chatbot, .chatbot *, .wrap, .wrap * {
276
+ color: #000000 !important;
 
 
277
  }
278
  .chatbot .message, .chatbot .user-message, .chatbot .bot-message {
279
+ color: #000000 !important;
 
280
  padding: 10px 15px;
281
  margin: 5px 0;
282
  border-radius: 0;
 
293
  border-radius: 4px;
294
  padding: 10px;
295
  overflow-x: auto;
296
+ color: #000000 !important;
297
  }
298
  .chatbot code {
299
  background-color: #f0f0f0 !important;
300
  padding: 2px 4px;
301
  border-radius: 4px;
302
  font-family: monospace;
303
+ color: #000000 !important;
304
  }
305
  .chatbot p, .chatbot span, .chatbot div {
306
+ color: #000000 !important;
307
  margin: 5px 0;
 
308
  }
309
  .chatbot * {
310
  word-wrap: break-word !important;
311
  white-space: pre-wrap !important;
312
  }
313
  .chatbot h1, .chatbot h2, .chatbot h3, .chatbot h4, .chatbot h5, .chatbot h6 {
314
+ color: #000000 !important;
315
  }
316
  .chatbot a {
317
+ color: #0000EE !important;
318
  text-decoration: underline !important;
319
  }
320
  .chatbot ul, .chatbot ol {
321
+ color: #000000 !important;
322
  padding-left: 20px !important;
323
  }
324
  .chatbot li {
325
  margin-bottom: 5px !important;
326
+ color: #000000 !important;
327
+ }
328
+ .chatbot table {
329
+ border-collapse: collapse !important;
330
+ width: 100% !important;
331
+ }
332
+ .chatbot th, .chatbot td {
333
+ border: 1px solid #000000 !important;
334
+ padding: 8px !important;
335
+ text-align: left !important;
336
+ color: #000000 !important;
337
+ }
338
+ .chatbot th {
339
+ background-color: #f2f2f2 !important;
340
+ font-weight: bold !important;
341
  }
342
  """
343