Use the new attachment as reference for the visual look of the loot boxes
Browse files
style.css
CHANGED
|
@@ -6,7 +6,6 @@
|
|
| 6 |
.font-poppins {
|
| 7 |
font-family: 'Poppins', sans-serif;
|
| 8 |
}
|
| 9 |
-
|
| 10 |
/* Glass Morphism */
|
| 11 |
.glass-panel {
|
| 12 |
background: rgba(255, 255, 255, 0.05);
|
|
@@ -17,6 +16,59 @@
|
|
| 17 |
inset 0 1px 1px rgba(255, 255, 255, 0.1);
|
| 18 |
}
|
| 19 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 20 |
/* Loot Box Styles */
|
| 21 |
.loot-box {
|
| 22 |
position: relative;
|
|
|
|
| 6 |
.font-poppins {
|
| 7 |
font-family: 'Poppins', sans-serif;
|
| 8 |
}
|
|
|
|
| 9 |
/* Glass Morphism */
|
| 10 |
.glass-panel {
|
| 11 |
background: rgba(255, 255, 255, 0.05);
|
|
|
|
| 16 |
inset 0 1px 1px rgba(255, 255, 255, 0.1);
|
| 17 |
}
|
| 18 |
|
| 19 |
+
/* Stat Cards */
|
| 20 |
+
.stat-card {
|
| 21 |
+
background: rgba(255, 255, 255, 0.03);
|
| 22 |
+
border: 1px solid rgba(255, 255, 255, 0.1);
|
| 23 |
+
border-radius: 1.5rem;
|
| 24 |
+
padding: 2rem;
|
| 25 |
+
text-align: center;
|
| 26 |
+
transition: all 0.3s ease;
|
| 27 |
+
}
|
| 28 |
+
|
| 29 |
+
.stat-card:hover {
|
| 30 |
+
transform: translateY(-5px);
|
| 31 |
+
background: rgba(255, 255, 255, 0.05);
|
| 32 |
+
}
|
| 33 |
+
|
| 34 |
+
/* Action Buttons */
|
| 35 |
+
.action-btn {
|
| 36 |
+
padding: 1rem 2rem;
|
| 37 |
+
border-radius: 2rem;
|
| 38 |
+
font-weight: 600;
|
| 39 |
+
text-transform: uppercase;
|
| 40 |
+
letter-spacing: 0.5px;
|
| 41 |
+
transition: all 0.3s ease;
|
| 42 |
+
cursor: pointer;
|
| 43 |
+
border: 2px solid transparent;
|
| 44 |
+
}
|
| 45 |
+
|
| 46 |
+
.action-btn.primary {
|
| 47 |
+
background: linear-gradient(135deg, #f59e0b, #d97706);
|
| 48 |
+
color: white;
|
| 49 |
+
}
|
| 50 |
+
|
| 51 |
+
.action-btn.secondary {
|
| 52 |
+
background: linear-gradient(135deg, #8b5cf6, #7c3aed);
|
| 53 |
+
color: white;
|
| 54 |
+
}
|
| 55 |
+
|
| 56 |
+
.action-btn.tertiary {
|
| 57 |
+
background: transparent;
|
| 58 |
+
border-color: rgba(255, 255, 255, 0.3);
|
| 59 |
+
color: rgba(255, 255, 255, 0.8);
|
| 60 |
+
}
|
| 61 |
+
|
| 62 |
+
.action-btn:hover {
|
| 63 |
+
transform: translateY(-2px);
|
| 64 |
+
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
|
| 65 |
+
}
|
| 66 |
+
|
| 67 |
+
.action-btn.tertiary:hover {
|
| 68 |
+
background: rgba(255, 255, 255, 0.1);
|
| 69 |
+
border-color: rgba(255, 255, 255, 0.5);
|
| 70 |
+
}
|
| 71 |
+
|
| 72 |
/* Loot Box Styles */
|
| 73 |
.loot-box {
|
| 74 |
position: relative;
|