Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
Upload styles.css
Browse files- styles/styles.css +23 -23
styles/styles.css
CHANGED
@@ -1,58 +1,58 @@
|
|
1 |
header {
|
2 |
-
|
3 |
}
|
4 |
|
5 |
footer {
|
6 |
-
|
7 |
-
|
8 |
}
|
9 |
|
10 |
#MainMenu {
|
11 |
-
|
12 |
-
|
13 |
}
|
14 |
|
15 |
div[data-testid="stDecoration"] {
|
16 |
-
|
17 |
}
|
18 |
|
19 |
/* hideTopBar = true in config.toml*/
|
20 |
div[data-testid="stToolbar"] {
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
}
|
25 |
|
26 |
div[data-testid="stStatusWidget"] {
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
}
|
31 |
|
32 |
.block-container {
|
33 |
-
|
34 |
}
|
35 |
|
36 |
-
|
37 |
/* Modified fonts:
|
38 |
markdown, Select box, Button text, Options text font from the select box, Chat input text area
|
39 |
*/
|
40 |
|
41 |
-
|
42 |
-
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
|
43 |
|
44 |
-
.stMarkdown p,
|
45 |
-
div[data-baseweb="select"],
|
46 |
div[data-testid="stMarkdownContainer"],
|
47 |
-
div[data-testid="tooltipHoverTarget"],
|
48 |
div[data-baseweb="base-input"] textarea {
|
49 |
-
|
50 |
}
|
51 |
-
*/
|
52 |
|
53 |
/*
|
54 |
Break long URLs in markdown
|
55 |
*/
|
56 |
div[data-testid="stMarkdownContainer"] {
|
57 |
-
|
58 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
header {
|
2 |
+
visibility: hidden;
|
3 |
}
|
4 |
|
5 |
footer {
|
6 |
+
visibility: hidden;
|
7 |
+
height: 0%;
|
8 |
}
|
9 |
|
10 |
#MainMenu {
|
11 |
+
visibility: hidden;
|
12 |
+
height: 0%;
|
13 |
}
|
14 |
|
15 |
div[data-testid="stDecoration"] {
|
16 |
+
display: none;
|
17 |
}
|
18 |
|
19 |
/* hideTopBar = true in config.toml*/
|
20 |
div[data-testid="stToolbar"] {
|
21 |
+
visibility: hidden;
|
22 |
+
height: 0%;
|
23 |
+
position: fixed;
|
24 |
}
|
25 |
|
26 |
div[data-testid="stStatusWidget"] {
|
27 |
+
visibility: hidden;
|
28 |
+
height: 0%;
|
29 |
+
position: fixed;
|
30 |
}
|
31 |
|
32 |
.block-container {
|
33 |
+
padding-top: 0rem;
|
34 |
}
|
35 |
|
|
|
36 |
/* Modified fonts:
|
37 |
markdown, Select box, Button text, Options text font from the select box, Chat input text area
|
38 |
*/
|
39 |
|
40 |
+
@import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");
|
|
|
41 |
|
|
|
|
|
42 |
div[data-testid="stMarkdownContainer"],
|
|
|
43 |
div[data-baseweb="base-input"] textarea {
|
44 |
+
font-family: "Roboto", sans-serif;
|
45 |
}
|
|
|
46 |
|
47 |
/*
|
48 |
Break long URLs in markdown
|
49 |
*/
|
50 |
div[data-testid="stMarkdownContainer"] {
|
51 |
+
overflow-wrap: break-word;
|
52 |
+
|
53 |
+
a,
|
54 |
+
strong {
|
55 |
+
color: #1b2e2c;
|
56 |
+
font-weight: bold;
|
57 |
+
}
|
58 |
+
}
|