Spaces:
Running
Running
Sebastiankay
commited on
Commit
•
650e716
1
Parent(s):
8188606
Update _res/_custom.css
Browse files- _res/_custom.css +41 -1
_res/_custom.css
CHANGED
@@ -1,3 +1,38 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
/* width */
|
2 |
::-webkit-scrollbar {
|
3 |
width: 0px;
|
@@ -108,9 +143,14 @@ body>gradio-app.has-bg-image::before {
|
|
108 |
|
109 |
}
|
110 |
|
|
|
|
|
|
|
|
|
|
|
111 |
@media screen and (min-width: 980px) {
|
112 |
|
113 |
-
|
114 |
max-width: 80% !important;
|
115 |
}
|
116 |
|
|
|
1 |
+
@font-face {
|
2 |
+
font-family: "Geist Mono";
|
3 |
+
src: url("file=_res/assets/webfonts/GeistMono-Thin.woff2") format("woff2");
|
4 |
+
font-weight: 100;
|
5 |
+
font-style: normal;
|
6 |
+
}
|
7 |
+
|
8 |
+
@font-face {
|
9 |
+
font-family: "Geist Mono";
|
10 |
+
src: url("file=_res/assets/webfonts/GeistMono-Light.woff2") format("woff2");
|
11 |
+
font-weight: 300;
|
12 |
+
font-style: normal;
|
13 |
+
}
|
14 |
+
|
15 |
+
@font-face {
|
16 |
+
font-family: "Geist Mono";
|
17 |
+
src: url("file=_res/assets/webfonts/GeistMono-Regular.woff2") format("woff2");
|
18 |
+
font-weight: 400;
|
19 |
+
font-style: normal;
|
20 |
+
}
|
21 |
+
|
22 |
+
@font-face {
|
23 |
+
font-family: "Geist Mono";
|
24 |
+
src: url("file=_res/assets/webfonts/GeistMono-SemiBold.woff2") format("woff2");
|
25 |
+
font-weight: 600;
|
26 |
+
font-style: normal;
|
27 |
+
}
|
28 |
+
|
29 |
+
@font-face {
|
30 |
+
font-family: "Geist Mono";
|
31 |
+
src: url("file=_res/assets/webfonts/GeistMono-Bold.woff2") format("woff2");
|
32 |
+
font-weight: 700;
|
33 |
+
font-style: normal;
|
34 |
+
}
|
35 |
+
|
36 |
/* width */
|
37 |
::-webkit-scrollbar {
|
38 |
width: 0px;
|
|
|
143 |
|
144 |
}
|
145 |
|
146 |
+
div.gradio-container {
|
147 |
+
font-family: "Geist Mono", sans-serif !important;
|
148 |
+
font-weight: 400;
|
149 |
+
}
|
150 |
+
|
151 |
@media screen and (min-width: 980px) {
|
152 |
|
153 |
+
div.gradio-container {
|
154 |
max-width: 80% !important;
|
155 |
}
|
156 |
|