Spaces:
Sleeping
Sleeping
Update styles.py
Browse files
styles.py
CHANGED
|
@@ -25,14 +25,14 @@ def get_custom_css():
|
|
| 25 |
width: 100%;
|
| 26 |
border-radius: 5px;
|
| 27 |
height: 3em;
|
| 28 |
-
background-color: #
|
| 29 |
-
color:
|
| 30 |
font-weight: bold;
|
| 31 |
transition: all 0.3s ease;
|
| 32 |
}
|
| 33 |
|
| 34 |
.stButton > button:hover {
|
| 35 |
-
background-color: #
|
| 36 |
transform: translateY(-2px);
|
| 37 |
}
|
| 38 |
|
|
|
|
| 25 |
width: 100%;
|
| 26 |
border-radius: 5px;
|
| 27 |
height: 3em;
|
| 28 |
+
background-color: #FFD700; /* Changed to yellow */
|
| 29 |
+
color: black; /* Changed to black for better contrast on yellow */
|
| 30 |
font-weight: bold;
|
| 31 |
transition: all 0.3s ease;
|
| 32 |
}
|
| 33 |
|
| 34 |
.stButton > button:hover {
|
| 35 |
+
background-color: #FFC800; /* Slightly darker yellow on hover */
|
| 36 |
transform: translateY(-2px);
|
| 37 |
}
|
| 38 |
|