Spaces:
Running
Running
File size: 4,087 Bytes
46428fd 7ebc062 46428fd 1fca5b4 35ed81e 46428fd 7ebc062 1fca5b4 46428fd 1fca5b4 46428fd 35ed81e 46428fd 35ed81e 46428fd 35ed81e 46428fd 35ed81e 46428fd 35ed81e 1fca5b4 46428fd 1fca5b4 46428fd 1fca5b4 46428fd 7ebc062 46428fd 7ebc062 46428fd 7ebc062 46428fd 7ebc062 46428fd 7ebc062 46428fd 7ebc062 46428fd f176733 46428fd 1fca5b4 46428fd 1fca5b4 46428fd 1fca5b4 46428fd 7ebc062 46428fd | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 | /* GraphicsLab - High‑End Graphics Testing Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
color: #1a202c;
min-height: 100dvh;
overflow-x: hidden;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 1.5rem;
}
/* Typography */
h1, h2, h3, h4, h5, h6 {
font-weight: 700;
line-height: 1.2;
}
/* Buttons */
.btn-primary, .btn-secondary, .btn-outline, .btn-small {
display: inline-flex;
align-items: center;
justify-content: center;
padding: 0.75rem 1.5rem;
border-radius: 0.5rem;
font-weight: 600;
font-size: 1rem;
text-decoration: none;
cursor: pointer;
transition: all 0.3s ease;
border: 2px solid transparent;
outline: none;
}
.btn-primary {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}
.btn-primary:hover {
transform: translateY(-2px);
box-shadow: 0 6px 16px rgba(102, 126, 234, 0.6);
}
.btn-secondary {
background: linear-gradient(135deg, #10b981 0%, #059669 100%);
color: white;
box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}
.btn-secondary:hover {
transform: translateY(-2px);
box-shadow: 0 6px 16px rgba(16, 185, 129, 0.6);
}
.btn-outline {
background: transparent;
color: #667eea;
border-color: #667eea;
}
.btn-outline:hover {
background: #667eea;
color: white;
}
.btn-large {
padding: 1rem 2.5rem;
font-size: 1.125rem;
}
.btn-small {
padding: 0.5rem 1rem;
font-size: 0.875rem;
background: #4f46e5;
color: white;
border-radius: 0.375rem;
}
.btn-small:hover {
background: #4338ca;
}
/* Cards */
.card {
background: white;
border-radius: 1rem;
padding: 2rem;
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
transition: transform 0.3s ease, box-shadow 0.3s ease;
border: 1px solid #e5e7eb;
}
.card:hover {
transform: translateY(-5px);
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.hover-lift:hover {
transform: translateY(-8px);
}
.icon-circle {
width: 64px;
height: 64px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.8rem;
margin-bottom: 1.5rem;
}
/* Badges */
.badge {
display: inline-block;
padding: 0.25rem 0.75rem;
border-radius: 9999px;
font-size: 0.75rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.05em;
}
.badge-webgl {
background: #c7d2fe;
color: #3730a3;
}
.badge-canvas {
background: #bbf7d0;
color: #166534;
}
.badge-webgpu {
background: #fbcfe8;
color: #831843;
}
.badge-easy {
background: #d1fae5;
color: #065f46;
}
.badge-medium {
background: #fef3c7;
color: #92400e;
}
.badge-hard {
background: #fee2e2;
color: #991b1b;
}
.badge-extreme {
background: linear-gradient(135deg, #831843, #500724);
color: #fbcfe8;
font-weight: 800;
text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}
/* Table */
table {
width: 100%;
border-collapse: collapse;
border-radius: 0.75rem;
overflow: hidden;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
th, td {
padding: 1rem;
text-align: left;
border-bottom: 1px solid #e5e7eb;
}
thead {
background: #1f2937;
color: white;
}
tbody tr:last-child td {
border-bottom: none;
}
/* Utility */
.text-gradient {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
/* Responsive */
@media (max-width: 768px) {
.container {
padding: 0 1rem;
}
h1 {
font-size: 2.5rem;
}
.card {
padding: 1.5rem;
}
} |