yrobel-lima commited on
Commit
c40ee86
1 Parent(s): 63fd5b9

Upload styles.css

Browse files
Files changed (1) hide show
  1. styles/styles.css +73 -68
styles/styles.css CHANGED
@@ -1,68 +1,73 @@
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
- /*
41
- @import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");
42
-
43
- div[data-testid="stMarkdownContainer"],
44
- div[data-baseweb="base-input"] textarea {
45
- font-family: "Roboto", sans-serif;
46
- }
47
- */
48
-
49
- /*
50
- Break long URLs in markdown, link color, and ordered lists format
51
- */
52
- div[data-testid="stMarkdownContainer"] {
53
- overflow-wrap: break-word;
54
-
55
- a,
56
- strong {
57
- color: #1b2e2c;
58
- font-weight: bold;
59
- }
60
-
61
- li p {
62
- margin: 0;
63
- }
64
- }
65
-
66
- div[data-testid="stSidebarUserContent"] {
67
- padding: 2rem 1.5rem;
68
- }
 
 
 
 
 
 
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: 0;
34
+ }
35
+
36
+ /*
37
+ Break long URLs in markdown, link color, and ordered lists format
38
+ */
39
+ div[data-testid="stMarkdownContainer"] {
40
+ overflow-wrap: break-word;
41
+
42
+ a,
43
+ strong {
44
+ color: #1b2e2c;
45
+ font-weight: bold;
46
+ }
47
+
48
+ li p {
49
+ margin: 0;
50
+ }
51
+ }
52
+
53
+ /* Modified fonts:
54
+ markdown, Select box, Button text, Options text font from the select box, Chat input text area
55
+ */
56
+
57
+ /*
58
+ @import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
59
+ @import url('https://fonts.googleapis.com/css2?family=Inter&display=swap');
60
+ */
61
+
62
+ /* or html p*/
63
+ /* Select box and option */
64
+ /* Chat input text area */
65
+
66
+ /*
67
+ div[data-testid="stMarkdownContainer"],
68
+ div[data-baseweb="select"],
69
+ li[role="option"],
70
+ div[data-baseweb="base-input"] textarea {
71
+ font-family: 'Inter', sans-serif;
72
+ }
73
+ /*