Spaces:
Sleeping
Sleeping
Update style.css
Browse files
style.css
CHANGED
@@ -1,9 +1,10 @@
|
|
1 |
-
/* Full Page Background - Dark Pink */
|
2 |
-
body,
|
3 |
-
background-color: #
|
4 |
font-family: "Comic Sans MS", cursive, sans-serif; /* Cute Font */
|
5 |
-
color: white;
|
6 |
-
height:
|
|
|
7 |
margin: 0;
|
8 |
display: flex;
|
9 |
justify-content: center;
|
@@ -79,6 +80,11 @@ button:hover {
|
|
79 |
text-align: center;
|
80 |
}
|
81 |
|
|
|
|
|
|
|
|
|
|
|
82 |
/* Make Sure Everything is Centered */
|
83 |
.centered {
|
84 |
display: flex;
|
@@ -105,4 +111,3 @@ button:hover {
|
|
105 |
font-size: 18px;
|
106 |
}
|
107 |
}
|
108 |
-
|
|
|
1 |
+
/* Force Full Page Background - Dark Pink */
|
2 |
+
html, body, .gradio-container {
|
3 |
+
background-color: #d63384 !important; /* Dark Pink */
|
4 |
font-family: "Comic Sans MS", cursive, sans-serif; /* Cute Font */
|
5 |
+
color: white !important;
|
6 |
+
height: 100vh;
|
7 |
+
width: 100vw;
|
8 |
margin: 0;
|
9 |
display: flex;
|
10 |
justify-content: center;
|
|
|
80 |
text-align: center;
|
81 |
}
|
82 |
|
83 |
+
/* Fix Hugging Face's default black background */
|
84 |
+
.gradio-container, .gradio-app {
|
85 |
+
background-color: transparent !important; /* Ensure it uses body’s color */
|
86 |
+
}
|
87 |
+
|
88 |
/* Make Sure Everything is Centered */
|
89 |
.centered {
|
90 |
display: flex;
|
|
|
111 |
font-size: 18px;
|
112 |
}
|
113 |
}
|
|