Update app.py
Browse files
app.py
CHANGED
|
@@ -42,7 +42,7 @@ if "x" not in st.session_state:
|
|
| 42 |
# Full-width layout
|
| 43 |
st.set_page_config(layout="wide")
|
| 44 |
|
| 45 |
-
# CSS Styles for Borders, Font
|
| 46 |
st.markdown(
|
| 47 |
"""
|
| 48 |
<style>
|
|
@@ -80,6 +80,12 @@ st.markdown(
|
|
| 80 |
padding-left: 0;
|
| 81 |
padding-right: 0;
|
| 82 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 83 |
</style>
|
| 84 |
""",
|
| 85 |
unsafe_allow_html=True,
|
|
|
|
| 42 |
# Full-width layout
|
| 43 |
st.set_page_config(layout="wide")
|
| 44 |
|
| 45 |
+
# CSS Styles for Borders, Font, Reduced Padding, and Custom Border Color
|
| 46 |
st.markdown(
|
| 47 |
"""
|
| 48 |
<style>
|
|
|
|
| 80 |
padding-left: 0;
|
| 81 |
padding-right: 0;
|
| 82 |
}
|
| 83 |
+
/* Custom borders for input fields */
|
| 84 |
+
.stTextInput input, .stNumberInput input {
|
| 85 |
+
border: 2px solid #001A6E;
|
| 86 |
+
border-radius: 5px;
|
| 87 |
+
padding: 10px;
|
| 88 |
+
}
|
| 89 |
</style>
|
| 90 |
""",
|
| 91 |
unsafe_allow_html=True,
|