Amrrs commited on
Commit
fd52a15
1 Parent(s): 5f56a09

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +14 -0
app.py CHANGED
@@ -3,6 +3,20 @@ import re # this is to do regular expression and extract the list of words
3
  import streamlit as st #web app development
4
 
5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6
  # extract the wordle solution list from the source page javascript
7
 
8
  @st.cache
 
3
  import streamlit as st #web app development
4
 
5
 
6
+
7
+ m = st.markdown("""
8
+ <style>
9
+ div.stButton > button:first-child {
10
+ background-color: #0000FF;
11
+ color:#ffffff;
12
+ }
13
+ div.stButton > button:hover {
14
+ background-color: #FF0000;
15
+ color:##ff99ff;
16
+ }
17
+ </style>""", unsafe_allow_html=True)
18
+
19
+
20
  # extract the wordle solution list from the source page javascript
21
 
22
  @st.cache