Manual changes saved
Browse files- index.html +16 -7
index.html
CHANGED
|
@@ -208,13 +208,22 @@
|
|
| 208 |
}
|
| 209 |
|
| 210 |
/* Accent button */
|
| 211 |
-
|
| 212 |
-
|
| 213 |
-
|
| 214 |
-
|
| 215 |
-
|
| 216 |
-
|
| 217 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 218 |
|
| 219 |
/* Card accent border + subtle hover */
|
| 220 |
.card-accent{
|
|
|
|
| 208 |
}
|
| 209 |
|
| 210 |
/* Accent button */
|
| 211 |
+
.btn-accent{
|
| 212 |
+
background: linear-gradient(180deg, #8DC63F, #7ab739);
|
| 213 |
+
color:#fff;
|
| 214 |
+
box-shadow: 0 6px 18px rgba(141,198,63,.35);
|
| 215 |
+
transition: transform .15s ease, box-shadow .15s ease, background .2s ease;
|
| 216 |
+
}
|
| 217 |
+
.btn-accent:hover{
|
| 218 |
+
transform: translateY(-2px);
|
| 219 |
+
background: linear-gradient(180deg, #9ddf48, #8DC63F);
|
| 220 |
+
box-shadow: 0 10px 24px rgba(141,198,63,.45);
|
| 221 |
+
}
|
| 222 |
+
.btn-accent:focus{
|
| 223 |
+
outline:2px solid #fff;
|
| 224 |
+
outline-offset:2px;
|
| 225 |
+
}
|
| 226 |
+
|
| 227 |
|
| 228 |
/* Card accent border + subtle hover */
|
| 229 |
.card-accent{
|