WasuratS commited on
Commit
cc98ea2
Β·
verified Β·
1 Parent(s): e402959

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +9 -2
app.py CHANGED
@@ -521,11 +521,18 @@ def analyze(file_path):
521
  # ──────────────────────────────────────────────────────────────────────────────
522
 
523
  CSS = """
 
 
524
  body, .gradio-container {
525
  background: linear-gradient(160deg, #071324 0%, #0b1e35 60%, #071324 100%) !important;
 
 
 
 
526
  }
527
- h1 { font-size: 2rem !important; }
528
- .gr-button { font-weight: 600; }
 
529
  footer { display: none !important; }
530
  """
531
 
 
521
  # ──────────────────────────────────────────────────────────────────────────────
522
 
523
  CSS = """
524
+ @import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@500;600;700;800&family=Quicksand:wght@400;500;600;700&display=swap');
525
+
526
  body, .gradio-container {
527
  background: linear-gradient(160deg, #071324 0%, #0b1e35 60%, #071324 100%) !important;
528
+ font-family: 'Quicksand', sans-serif !important;
529
+ }
530
+ h1, h2, h3, h4, .gr-button, label, .tab-nav button {
531
+ font-family: 'Baloo 2', cursive !important;
532
  }
533
+ h1 { font-size: 2.2rem !important; font-weight: 700 !important; }
534
+ h2, h3 { font-weight: 600 !important; }
535
+ .gr-button { font-weight: 600; letter-spacing: 0.02em; }
536
  footer { display: none !important; }
537
  """
538