Spaces:
Sleeping
Sleeping
Update style.css
Browse files
style.css
CHANGED
|
@@ -227,9 +227,9 @@ body {
|
|
| 227 |
justify-content: space-around;
|
| 228 |
}
|
| 229 |
|
|
|
|
| 230 |
.mood-btn {
|
| 231 |
font-weight: 600;
|
| 232 |
-
color: white;
|
| 233 |
border: none;
|
| 234 |
border-radius: 14px;
|
| 235 |
padding: 14px 20px;
|
|
@@ -242,8 +242,20 @@ body {
|
|
| 242 |
flex: 1 1 20%;
|
| 243 |
max-width: 180px;
|
| 244 |
text-align: center;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 245 |
}
|
| 246 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 247 |
.mood-heading {
|
| 248 |
text-align: center;
|
| 249 |
font-weight: 700;
|
|
|
|
| 227 |
justify-content: space-around;
|
| 228 |
}
|
| 229 |
|
| 230 |
+
/* Mood Buttons */
|
| 231 |
.mood-btn {
|
| 232 |
font-weight: 600;
|
|
|
|
| 233 |
border: none;
|
| 234 |
border-radius: 14px;
|
| 235 |
padding: 14px 20px;
|
|
|
|
| 242 |
flex: 1 1 20%;
|
| 243 |
max-width: 180px;
|
| 244 |
text-align: center;
|
| 245 |
+
/* Remove default background/color here */
|
| 246 |
+
/* color will be inherited from inline style (white) */
|
| 247 |
+
}
|
| 248 |
+
|
| 249 |
+
.mood-btn:hover {
|
| 250 |
+
transform: translateY(-3px) scale(1.03);
|
| 251 |
+
box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
|
| 252 |
}
|
| 253 |
|
| 254 |
+
.mood-btn:active {
|
| 255 |
+
transform: translateY(0);
|
| 256 |
+
}
|
| 257 |
+
|
| 258 |
+
|
| 259 |
.mood-heading {
|
| 260 |
text-align: center;
|
| 261 |
font-weight: 700;
|