Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -44,6 +44,29 @@ st.markdown("""
|
|
44 |
.stApp > header {
|
45 |
background-color: transparent !important;
|
46 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
47 |
</style>
|
48 |
""", unsafe_allow_html=True)
|
49 |
|
|
|
44 |
.stApp > header {
|
45 |
background-color: transparent !important;
|
46 |
}
|
47 |
+
|
48 |
+
|
49 |
+
|
50 |
+
|
51 |
+
.stTextInput > div > div > input {
|
52 |
+
background-color: #333 !important;
|
53 |
+
color: white !important;
|
54 |
+
}
|
55 |
+
.stNumberInput > div > div > input {
|
56 |
+
background-color: #333 !important;
|
57 |
+
color: white !important;
|
58 |
+
}
|
59 |
+
.stTextInput > label, .stNumberInput > label {
|
60 |
+
color: white !important;
|
61 |
+
}
|
62 |
+
.stButton > button {
|
63 |
+
background-color: #123416 !important;
|
64 |
+
color: white !important;
|
65 |
+
border: 1px solid #258c10 !important;
|
66 |
+
}
|
67 |
+
.stButton > button:hover {
|
68 |
+
background-color: #1e5626 !important;
|
69 |
+
}
|
70 |
</style>
|
71 |
""", unsafe_allow_html=True)
|
72 |
|