JeCabrera commited on
Commit
5aecc48
·
verified ·
1 Parent(s): d89b40e

Update styles.py

Browse files
Files changed (1) hide show
  1. styles.py +4 -4
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: #4CAF50;
53
  color: black;
54
  font-weight: bold;
55
  transition: all 0.3s ease;
56
- border: 1px solid black;
57
  }
58
 
59
  [data-testid="stDownloadButton"] button:hover {
60
- background-color: #45a049;
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