Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -31,9 +31,31 @@ st.markdown("""
|
|
| 31 |
font-size: 18px;
|
| 32 |
font-weight: bold;
|
| 33 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 34 |
</style>
|
| 35 |
""", unsafe_allow_html=True)
|
| 36 |
|
|
|
|
| 37 |
# ===== GSheet integration =====
|
| 38 |
@st.cache_resource
|
| 39 |
def get_gsheet_client():
|
|
|
|
| 31 |
font-size: 18px;
|
| 32 |
font-weight: bold;
|
| 33 |
}
|
| 34 |
+
|
| 35 |
+
/* Custom borders for the semester input boxes */
|
| 36 |
+
.semester-box {
|
| 37 |
+
border: 2px solid #003366;
|
| 38 |
+
padding: 15px;
|
| 39 |
+
border-radius: 8px;
|
| 40 |
+
margin-top: 10px;
|
| 41 |
+
}
|
| 42 |
+
|
| 43 |
+
.input-field {
|
| 44 |
+
border: 2px solid #003366;
|
| 45 |
+
border-radius: 8px;
|
| 46 |
+
padding: 8px;
|
| 47 |
+
font-size: 14px;
|
| 48 |
+
}
|
| 49 |
+
|
| 50 |
+
.expander-header {
|
| 51 |
+
font-size: 16px;
|
| 52 |
+
font-weight: bold;
|
| 53 |
+
color: #003366;
|
| 54 |
+
}
|
| 55 |
</style>
|
| 56 |
""", unsafe_allow_html=True)
|
| 57 |
|
| 58 |
+
|
| 59 |
# ===== GSheet integration =====
|
| 60 |
@st.cache_resource
|
| 61 |
def get_gsheet_client():
|