Update src/streamlit_app.py
Browse files- src/streamlit_app.py +12 -21
src/streamlit_app.py
CHANGED
|
@@ -27,39 +27,30 @@ st.markdown("""
|
|
| 27 |
/* Main title styling */
|
| 28 |
.main-title {
|
| 29 |
text-align: center;
|
| 30 |
-
font-size:
|
| 31 |
font-weight: 500;
|
| 32 |
margin-top: 1rem;
|
| 33 |
margin-bottom: 2rem;
|
| 34 |
color: #363636;
|
| 35 |
}
|
| 36 |
|
| 37 |
-
/*
|
| 38 |
-
.
|
| 39 |
-
|
| 40 |
-
justify-content: center;
|
| 41 |
-
gap: 1rem;
|
| 42 |
margin-bottom: 3rem;
|
| 43 |
-
|
| 44 |
}
|
| 45 |
|
| 46 |
-
.
|
| 47 |
-
|
| 48 |
-
align-items: center;
|
| 49 |
-
gap: 0.5rem;
|
| 50 |
-
padding: 0.6rem 1.5rem;
|
| 51 |
-
background-color: #363636;
|
| 52 |
-
border: 1px solid #363636;
|
| 53 |
-
border-radius: 50px;
|
| 54 |
text-decoration: none;
|
| 55 |
-
color: #
|
| 56 |
-
font-weight:
|
| 57 |
-
transition:
|
| 58 |
-
font-size: 0.95rem;
|
| 59 |
}
|
| 60 |
|
| 61 |
-
.
|
| 62 |
-
|
| 63 |
}
|
| 64 |
|
| 65 |
/* Section headers */
|
|
|
|
| 27 |
/* Main title styling */
|
| 28 |
.main-title {
|
| 29 |
text-align: center;
|
| 30 |
+
font-size: 50rem;
|
| 31 |
font-weight: 500;
|
| 32 |
margin-top: 1rem;
|
| 33 |
margin-bottom: 2rem;
|
| 34 |
color: #363636;
|
| 35 |
}
|
| 36 |
|
| 37 |
+
/* Links container */
|
| 38 |
+
.links-container {
|
| 39 |
+
text-align: center;
|
|
|
|
|
|
|
| 40 |
margin-bottom: 3rem;
|
| 41 |
+
font-size: 1.1rem;
|
| 42 |
}
|
| 43 |
|
| 44 |
+
.links-container a {
|
| 45 |
+
margin: 0 1rem;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 46 |
text-decoration: none;
|
| 47 |
+
color: #667eea;
|
| 48 |
+
font-weight: 600;
|
| 49 |
+
transition: color 0.3s;
|
|
|
|
| 50 |
}
|
| 51 |
|
| 52 |
+
.links-container a:hover {
|
| 53 |
+
color: #764ba2;
|
| 54 |
}
|
| 55 |
|
| 56 |
/* Section headers */
|