openfree commited on
Commit
e732e3c
ยท
verified ยท
1 Parent(s): 4c7687e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +53 -13
app.py CHANGED
@@ -314,25 +314,65 @@ css = """
314
  footer {visibility: hidden;}
315
 
316
  #status_area {
317
- position: fixed;
318
- top: 0;
319
- left: 0;
320
- right: 0;
321
- background: white;
322
- padding: 20px;
323
- border-bottom: 2px solid #eee;
324
- z-index: 1000;
325
  margin-bottom: 20px;
 
326
  }
327
 
328
  #results_area {
329
- margin-top: 150px; /* status_area์˜ ๋†’์ด๋งŒํผ ์—ฌ๋ฐฑ ์ถ”๊ฐ€ */
330
- padding: 20px;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
331
  }
332
 
333
- /* ํ”„๋กœ๊ทธ๋ ˆ์Šค๋ฐ” ์ค‘๋ณต ์ถœ๋ ฅ ๋ฐฉ์ง€ */
334
- .progress-container:not(:first-child) {
335
- display: none !important;
 
336
  }
337
  """
338
 
 
314
  footer {visibility: hidden;}
315
 
316
  #status_area {
317
+ background: rgba(255, 255, 255, 0.9); /* ์•ฝ๊ฐ„ ํˆฌ๋ช…ํ•œ ํฐ์ƒ‰ ๋ฐฐ๊ฒฝ */
318
+ padding: 15px;
319
+ border-bottom: 1px solid #ddd;
 
 
 
 
 
320
  margin-bottom: 20px;
321
+ box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* ๋ถ€๋“œ๋Ÿฌ์šด ๊ทธ๋ฆผ์ž ํšจ๊ณผ */
322
  }
323
 
324
  #results_area {
325
+ padding: 10px;
326
+ margin-top: 10px;
327
+ }
328
+
329
+ /* ํƒญ ์Šคํƒ€์ผ ๊ฐœ์„  */
330
+ .tabs {
331
+ border-bottom: 2px solid #ddd !important;
332
+ margin-bottom: 20px !important;
333
+ }
334
+
335
+ .tab-nav {
336
+ border-bottom: none !important;
337
+ margin-bottom: 0 !important;
338
+ }
339
+
340
+ .tab-nav button {
341
+ font-weight: bold !important;
342
+ padding: 10px 20px !important;
343
+ }
344
+
345
+ .tab-nav button.selected {
346
+ border-bottom: 2px solid #1f77b4 !important; /* ์„ ํƒ๋œ ํƒญ ๊ฐ•์กฐ */
347
+ color: #1f77b4 !important;
348
+ }
349
+
350
+ /* ๊ฒ€์ƒ‰ ์ƒํƒœ ๋ฉ”์‹œ์ง€ ์Šคํƒ€์ผ */
351
+ #status_area .markdown-text {
352
+ font-size: 1.1em;
353
+ color: #2c3e50;
354
+ padding: 10px 0;
355
+ }
356
+
357
+ /* ๊ฒ€์ƒ‰ ๊ฒฐ๊ณผ ์ปจํ…Œ์ด๋„ˆ ์Šคํƒ€์ผ */
358
+ .group {
359
+ border: 1px solid #eee;
360
+ padding: 15px;
361
+ margin-bottom: 15px;
362
+ border-radius: 5px;
363
+ background: white;
364
+ }
365
+
366
+ /* ๊ฒ€์ƒ‰ ๋ฒ„ํŠผ ์Šคํƒ€์ผ */
367
+ .primary-btn {
368
+ background: #1f77b4 !important;
369
+ border: none !important;
370
  }
371
 
372
+ /* ๊ฒ€์ƒ‰์–ด ์ž…๋ ฅ์ฐฝ ์Šคํƒ€์ผ */
373
+ .textbox {
374
+ border: 1px solid #ddd !important;
375
+ border-radius: 4px !important;
376
  }
377
  """
378