Update app.py
Browse files
app.py
CHANGED
@@ -18,7 +18,7 @@ if "time_up" not in st.session_state:
|
|
18 |
st.session_state.time_up = False
|
19 |
|
20 |
# Title
|
21 |
-
st.title("🐧 MK316
|
22 |
|
23 |
# Function to display the current time (as a live digital clock)
|
24 |
def display_current_time(current_time_placeholder):
|
@@ -27,7 +27,7 @@ def display_current_time(current_time_placeholder):
|
|
27 |
|
28 |
# Style the clock (increase font size and set color)
|
29 |
current_time_placeholder.markdown(
|
30 |
-
f"<
|
31 |
unsafe_allow_html=True
|
32 |
)
|
33 |
|
|
|
18 |
st.session_state.time_up = False
|
19 |
|
20 |
# Title
|
21 |
+
st.title("🐧 MK316 Customized Timer ")
|
22 |
|
23 |
# Function to display the current time (as a live digital clock)
|
24 |
def display_current_time(current_time_placeholder):
|
|
|
27 |
|
28 |
# Style the clock (increase font size and set color)
|
29 |
current_time_placeholder.markdown(
|
30 |
+
f"<h2 style='text-align: center; font-size: 60px; color: #5785A4;'>{current_time}</h1>", # Large font
|
31 |
unsafe_allow_html=True
|
32 |
)
|
33 |
|