Spaces:
Paused
Paused
Update app.py
Browse files
app.py
CHANGED
@@ -77,13 +77,16 @@ footer {
|
|
77 |
overflow: hidden;
|
78 |
}
|
79 |
|
80 |
-
/* Import
|
81 |
-
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
|
82 |
|
83 |
-
/* Apply
|
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:
|