JeCabrera commited on
Commit
ce5b1e2
·
verified ·
1 Parent(s): ed21650

Update style.py

Browse files
Files changed (1) hide show
  1. style.py +9 -11
style.py CHANGED
@@ -8,20 +8,18 @@ styles = {
8
  """,
9
  "button": """
10
  <style>
11
- .stButton button {
12
  width: 100%;
13
- background-color: #FF4B4B;
14
- color: white;
15
- border-radius: 0.5rem;
16
- padding: 0.5rem 1rem;
17
- font-weight: 600;
18
  border: none;
19
- margin: 1rem 0;
20
  }
21
- .stButton button:hover {
22
- background-color: #FF3333;
23
- box-shadow: 0 4px 8px rgba(0,0,0,0.1);
24
- transform: translateY(-2px);
25
  }
26
  </style>
27
  """,
 
8
  """,
9
  "button": """
10
  <style>
11
+ .stButton > button {
12
  width: 100%;
13
+ margin-top: 1rem;
14
+ background-color: #FFD700;
15
+ color: black;
16
+ font-weight: bold;
 
17
  border: none;
 
18
  }
19
+ .stButton > button:hover {
20
+ background-color: #FFC800;
21
+ color: black;
22
+ border: none;
23
  }
24
  </style>
25
  """,