ginipick commited on
Commit
f271568
·
verified ·
1 Parent(s): 38876fc

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +36 -0
app.py CHANGED
@@ -270,6 +270,42 @@ def create_ui():
270
  color: #2c3e50 !important;
271
  background-color: #ecf0f1 !important;
272
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
273
  """
274
 
275
  with gr.Blocks(theme="Nymbo/Nymbo_Theme", css=css) as demo:
 
270
  color: #2c3e50 !important;
271
  background-color: #ecf0f1 !important;
272
  }
273
+
274
+ /* AI 코딩 탭의 Chatbot 스타일 수정 */
275
+ .chatbot {
276
+ background-color: #ffffff !important;
277
+ border-radius: 10px;
278
+ box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
279
+ }
280
+ .chatbot .message {
281
+ padding: 10px 15px;
282
+ margin: 5px 0;
283
+ border-radius: 8px;
284
+ }
285
+ .chatbot .user-message {
286
+ background-color: #e8f5e9 !important;
287
+ color: #1b5e20 !important;
288
+ }
289
+ .chatbot .bot-message {
290
+ background-color: #e3f2fd !important;
291
+ color: #0d47a1 !important;
292
+ }
293
+ .chatbot pre {
294
+ background-color: #f5f5f5 !important;
295
+ border: 1px solid #ddd;
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 {
307
+ margin: 5px 0;
308
+ }
309
  """
310
 
311
  with gr.Blocks(theme="Nymbo/Nymbo_Theme", css=css) as demo: