Spaces:
Sleeping
Sleeping
Update styles.py
Browse files
styles.py
CHANGED
@@ -38,7 +38,7 @@ def get_custom_css():
|
|
38 |
transform: translateY(-2px);
|
39 |
}
|
40 |
|
41 |
-
/* Style for download button */
|
42 |
[data-testid="stDownloadButton"] {
|
43 |
text-align: center;
|
44 |
display: flex;
|
@@ -49,15 +49,15 @@ def get_custom_css():
|
|
49 |
width: 80%;
|
50 |
border-radius: 5px;
|
51 |
height: 3em;
|
52 |
-
background-color: #
|
53 |
color: black;
|
54 |
font-weight: bold;
|
55 |
transition: all 0.3s ease;
|
56 |
-
border:
|
57 |
}
|
58 |
|
59 |
[data-testid="stDownloadButton"] button:hover {
|
60 |
-
background-color: #
|
61 |
transform: translateY(-2px);
|
62 |
}
|
63 |
|
|
|
38 |
transform: translateY(-2px);
|
39 |
}
|
40 |
|
41 |
+
/* Style for download button - updated to match the image */
|
42 |
[data-testid="stDownloadButton"] {
|
43 |
text-align: center;
|
44 |
display: flex;
|
|
|
49 |
width: 80%;
|
50 |
border-radius: 5px;
|
51 |
height: 3em;
|
52 |
+
background-color: #00D100; /* Bright green color from the image */
|
53 |
color: black;
|
54 |
font-weight: bold;
|
55 |
transition: all 0.3s ease;
|
56 |
+
border: 2px solid black;
|
57 |
}
|
58 |
|
59 |
[data-testid="stDownloadButton"] button:hover {
|
60 |
+
background-color: #00C000; /* Slightly darker on hover */
|
61 |
transform: translateY(-2px);
|
62 |
}
|
63 |
|