Spaces:
Sleeping
Sleeping
Update static/styles.css
Browse files- static/styles.css +18 -0
static/styles.css
CHANGED
|
@@ -172,4 +172,22 @@ body {
|
|
| 172 |
background-color: white;
|
| 173 |
padding: 20px;
|
| 174 |
border-radius: 5px;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 175 |
}
|
|
|
|
| 172 |
background-color: white;
|
| 173 |
padding: 20px;
|
| 174 |
border-radius: 5px;
|
| 175 |
+
}
|
| 176 |
+
|
| 177 |
+
.shop-item {
|
| 178 |
+
position: relative;
|
| 179 |
+
width: 80px;
|
| 180 |
+
text-align: center;
|
| 181 |
+
cursor: pointer;
|
| 182 |
+
transition: transform 0.2s ease;
|
| 183 |
+
}
|
| 184 |
+
|
| 185 |
+
.shop-item:hover {
|
| 186 |
+
transform: scale(1.05);
|
| 187 |
+
}
|
| 188 |
+
|
| 189 |
+
.shop-item.selected {
|
| 190 |
+
border: 2px solid #4CAF50;
|
| 191 |
+
border-radius: 5px;
|
| 192 |
+
background-color: rgba(76, 175, 80, 0.1);
|
| 193 |
}
|