Spaces:
Sleeping
Sleeping
Update style.css
Browse files
style.css
CHANGED
@@ -25,6 +25,19 @@ html, body {
|
|
25 |
padding: 10px 0;
|
26 |
}
|
27 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
28 |
/* Cute Input Box */
|
29 |
.stTextInput > div {
|
30 |
border-radius: 20px;
|
|
|
25 |
padding: 10px 0;
|
26 |
}
|
27 |
|
28 |
+
/* FULLY WHITE Input Box */
|
29 |
+
input[type="text"], textarea, .gradio-input, .stTextInput > div {
|
30 |
+
background-color: white !important; /* FORCE white */
|
31 |
+
border: 2px solid #ff69b4 !important; /* Pink border */
|
32 |
+
border-radius: 20px;
|
33 |
+
padding: 10px;
|
34 |
+
color: black !important; /* Normal text */
|
35 |
+
text-align: center; /* Center text */
|
36 |
+
width: 100% !important;
|
37 |
+
max-width: 300px;
|
38 |
+
margin: 0 auto; /* Center it */
|
39 |
+
}
|
40 |
+
|
41 |
/* Cute Input Box */
|
42 |
.stTextInput > div {
|
43 |
border-radius: 20px;
|