Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -15,12 +15,12 @@ class CustomTheme(Base):
|
|
15 |
radius_size: sizes.Size | str = sizes.radius_md,
|
16 |
text_size: sizes.Size | str = sizes.text_md,
|
17 |
font: fonts.Font | str | Iterable[fonts.Font | str] = (
|
18 |
-
fonts.GoogleFont("
|
19 |
"ui-sans-serif",
|
20 |
"sans-serif",
|
21 |
),
|
22 |
font_mono: fonts.Font | str | Iterable[fonts.Font | str] = (
|
23 |
-
fonts.GoogleFont("
|
24 |
"ui-monospace",
|
25 |
"monospace",
|
26 |
),
|
@@ -94,8 +94,9 @@ h3 {
|
|
94 |
padding: 10px;
|
95 |
}
|
96 |
#sickstadium-title {
|
97 |
-
font-size:
|
98 |
font-weight: bold;
|
|
|
99 |
}
|
100 |
"""
|
101 |
|
|
|
15 |
radius_size: sizes.Size | str = sizes.radius_md,
|
16 |
text_size: sizes.Size | str = sizes.text_md,
|
17 |
font: fonts.Font | str | Iterable[fonts.Font | str] = (
|
18 |
+
fonts.GoogleFont("Sora"),
|
19 |
"ui-sans-serif",
|
20 |
"sans-serif",
|
21 |
),
|
22 |
font_mono: fonts.Font | str | Iterable[fonts.Font | str] = (
|
23 |
+
fonts.GoogleFont("Sora"),
|
24 |
"ui-monospace",
|
25 |
"monospace",
|
26 |
),
|
|
|
94 |
padding: 10px;
|
95 |
}
|
96 |
#sickstadium-title {
|
97 |
+
font-size: 2.5em !important;
|
98 |
font-weight: bold;
|
99 |
+
text-transform: uppercase;
|
100 |
}
|
101 |
"""
|
102 |
|