shingguy1 commited on
Commit
a3bcebc
·
verified ·
1 Parent(s): c6134f9

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -2
app.py CHANGED
@@ -94,7 +94,7 @@ st.set_page_config(
94
  layout="centered"
95
  )
96
 
97
- # Custom CSS for kid-friendly styling
98
  st.markdown("""
99
  <style>
100
  .main {
@@ -117,7 +117,7 @@ st.markdown("""
117
  color: white;
118
  transform: scale(1.05);
119
  }
120
- .stFileUploader {
121
  background-color: #fff3cd;
122
  border: 2px dashed #ffca28;
123
  border-radius: 10px;
@@ -144,6 +144,10 @@ st.markdown("""
144
  border-radius: 10px;
145
  border: 2px solid #d4e157;
146
  margin-bottom: 20px;
 
 
 
 
147
  }
148
  </style>
149
  """, unsafe_allow_html=True)
 
94
  layout="centered"
95
  )
96
 
97
+ # Custom CSS for kid-friendly styling with dark blue text
98
  st.markdown("""
99
  <style>
100
  .main {
 
117
  color: white;
118
  transform: scale(1.05);
119
  }
120
+ .stFileUploader {
121
  background-color: #fff3cd;
122
  border: 2px dashed #ffca28;
123
  border-radius: 10px;
 
144
  border-radius: 10px;
145
  border: 2px solid #d4e157;
146
  margin-bottom: 20px;
147
+ color: #1e3a8a; /* Dark blue text for better readability */
148
+ }
149
+ .caption-box b, .story-box b {
150
+ color: #1e3a8a; /* Ensure the bold text (header) is also dark blue */
151
  }
152
  </style>
153
  """, unsafe_allow_html=True)