Zaiiida commited on
Commit
883fdf9
·
verified ·
1 Parent(s): e2a30d4

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -3
app.py CHANGED
@@ -77,13 +77,16 @@ footer {
77
  overflow: hidden;
78
  }
79
 
80
- /* Import custom font */
81
- @import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
82
 
83
- /* Apply the font to the body and inputs */
84
  body, input, button, textarea, select, .gr-button {
85
  font-family: 'Roboto', sans-serif;
86
  }
 
 
 
87
  """
88
 
89
  with gr.Blocks(theme=CustomTheme(), css=css) as demo:
 
77
  overflow: hidden;
78
  }
79
 
80
+ /* Import Google Fonts */
81
+ @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&family=Montserrat:wght@500;700&display=swap');
82
 
83
+ /* Apply fonts to different elements */
84
  body, input, button, textarea, select, .gr-button {
85
  font-family: 'Roboto', sans-serif;
86
  }
87
+ h1, h2, h3, h4, h5, h6 {
88
+ font-family: 'Montserrat', sans-serif;
89
+ }
90
  """
91
 
92
  with gr.Blocks(theme=CustomTheme(), css=css) as demo: