Spaces:
Sleeping
Sleeping
Commit
·
0712dbc
1
Parent(s):
7b46c59
Update: font styling
Browse files
app.py
CHANGED
@@ -53,12 +53,18 @@ with gr.Blocks() as interface:
|
|
53 |
body {
|
54 |
background-color: #29AB87;
|
55 |
color: #D3D3D3; /* Set the default text color to light grey */
|
|
|
|
|
56 |
}
|
57 |
.gradio-container {
|
58 |
color: #D3D3D3; /* Ensure Gradio components also have light grey text */
|
|
|
|
|
59 |
}
|
60 |
h1, h2, h3, h4, h5, h6 {
|
61 |
color: #FFFFFF !important; /* Force all headings, paragraphs, and labels to white */
|
|
|
|
|
62 |
}
|
63 |
.gr-markdown {
|
64 |
color: #D3D3D3 !important; /* Ensure Markdown text is white */
|
|
|
53 |
body {
|
54 |
background-color: #29AB87;
|
55 |
color: #D3D3D3; /* Set the default text color to light grey */
|
56 |
+
margin: 0; /* Remove default body margin */
|
57 |
+
padding: 0; /* Remove default body padding */
|
58 |
}
|
59 |
.gradio-container {
|
60 |
color: #D3D3D3; /* Ensure Gradio components also have light grey text */
|
61 |
+
margin: 0; /* Remove default body margin */
|
62 |
+
padding: 0; /* Remove default body padding */
|
63 |
}
|
64 |
h1, h2, h3, h4, h5, h6 {
|
65 |
color: #FFFFFF !important; /* Force all headings, paragraphs, and labels to white */
|
66 |
+
margin: 0; /* Remove default body margin */
|
67 |
+
padding: 0; /* Remove default body padding */
|
68 |
}
|
69 |
.gr-markdown {
|
70 |
color: #D3D3D3 !important; /* Ensure Markdown text is white */
|