Andrew12121212 commited on
Commit
ed3fe3f
·
verified ·
1 Parent(s): 5c71b89

Update static/style.css

Browse files
Files changed (1) hide show
  1. static/style.css +18 -0
static/style.css CHANGED
@@ -157,4 +157,22 @@ h2 {
157
  .botones-resultado button:hover {
158
  transform: scale(1.2);
159
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
160
  }
 
157
  .botones-resultado button:hover {
158
  transform: scale(1.2);
159
  }
160
+
161
+ .btn {
162
+ padding: 10px 22px;
163
+ background: linear-gradient(90deg,#20603d 70%,#49b87a 100%);
164
+ color: #fff;
165
+ border-radius: 8px;
166
+ text-decoration: none;
167
+ font-weight: 600;
168
+ font-size: 1em;
169
+ box-shadow: 0 2px 10px #20603d22;
170
+ transition: background 0.18s;
171
+ border: none;
172
+ cursor: pointer;
173
+ }
174
+ .btn:hover {
175
+ background: linear-gradient(90deg,#49b87a 70%,#20603d 100%);
176
+ color: #fff;
177
+ }
178
  }