Spaces:
Sleeping
Sleeping
palitrajarshi
commited on
Commit
β’
888b4b1
1
Parent(s):
7f94b27
Update pages/Marketing_Campaign_Creator.py
Browse files
pages/Marketing_Campaign_Creator.py
CHANGED
@@ -141,6 +141,20 @@ st.set_page_config(page_title="Marketing Tool",
|
|
141 |
layout='centered')
|
142 |
st.header("Hey, How can I help you? π")
|
143 |
st.sidebar.image('./marketing1.png', width=300, use_column_width=True)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
144 |
form_input = st.text_area('Enter text π', height=100)
|
145 |
|
146 |
tasktype_option = st.radio(
|
|
|
141 |
layout='centered')
|
142 |
st.header("Hey, How can I help you? π")
|
143 |
st.sidebar.image('./marketing1.png', width=300, use_column_width=True)
|
144 |
+
|
145 |
+
# Applying Styling
|
146 |
+
st.markdown("""
|
147 |
+
<style>
|
148 |
+
div.stButton > button:first-child {
|
149 |
+
background-color: #0099ff;
|
150 |
+
color:#ffffff;
|
151 |
+
}
|
152 |
+
div.stButton > button:hover {
|
153 |
+
background-color: #00ff00;
|
154 |
+
color:#FFFFFF;
|
155 |
+
}
|
156 |
+
</style>""", unsafe_allow_html=True)
|
157 |
+
|
158 |
form_input = st.text_area('Enter text π', height=100)
|
159 |
|
160 |
tasktype_option = st.radio(
|