Upload 2 files
Browse files- .streamlit/config.toml +3 -0
- .streamlit/style.css +44 -0
.streamlit/config.toml
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
[theme]
|
2 |
+
base="light"
|
3 |
+
primaryColor="gray"
|
.streamlit/style.css
CHANGED
@@ -0,0 +1,44 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@200&display=swap');
|
2 |
+
|
3 |
+
MainMenu {
|
4 |
+
visibility: hidden;
|
5 |
+
}
|
6 |
+
|
7 |
+
header {
|
8 |
+
visibility: hidden;
|
9 |
+
}
|
10 |
+
|
11 |
+
footer {
|
12 |
+
visibility: hidden;
|
13 |
+
}
|
14 |
+
|
15 |
+
button[title="View fullscreen"]{
|
16 |
+
visibility: hidden;
|
17 |
+
}
|
18 |
+
|
19 |
+
.block-container {
|
20 |
+
padding-top: 0.50rem;
|
21 |
+
padding-bottom: 1rem;
|
22 |
+
padding-left: 1rem;
|
23 |
+
padding-right: 1rem;
|
24 |
+
}
|
25 |
+
|
26 |
+
.footer {
|
27 |
+
position: fixed;
|
28 |
+
left: 0;
|
29 |
+
bottom: 0;
|
30 |
+
width: 100%;
|
31 |
+
background-color: white;
|
32 |
+
color: #737373;
|
33 |
+
text-align: center;}
|
34 |
+
|
35 |
+
.p {
|
36 |
+
font-family: 'IBM Plex Sans', sans-serif;
|
37 |
+
font-size: 12px;
|
38 |
+
text-align: center;}
|
39 |
+
|
40 |
+
.p1 {
|
41 |
+
font-family: 'IBM Plex Sans', sans-serif;
|
42 |
+
font-size: 12px;
|
43 |
+
text-align:center;}
|
44 |
+
|