Spaces:
Sleeping
Sleeping
File size: 1,421 Bytes
c454c65 | 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 | /* ========================================
NOVA AI GAMES - Math Game Styles
Problem Display & Answer Options
======================================== */
.math-container {
text-align: center;
max-width: 320px;
width: 100%;
}
.math-problem {
font-size: 48px;
font-weight: 800;
margin-bottom: var(--spacing-xl);
min-height: 60px;
}
.math-options {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: var(--spacing-md);
}
.math-option {
padding: var(--spacing-lg);
background: var(--bg-glass);
border: 2px solid transparent;
border-radius: var(--radius-md);
font-size: 24px;
font-weight: 600;
color: var(--text-primary);
cursor: pointer;
transition: all var(--transition-fast);
}
.math-option:active {
transform: scale(0.95);
}
.math-option.correct {
background: rgba(34, 197, 94, 0.2);
border-color: var(--success);
}
.math-option.wrong {
background: rgba(239, 68, 68, 0.2);
border-color: var(--error);
}
.math-stats {
display: flex;
justify-content: center;
gap: var(--spacing-xl);
margin-top: var(--spacing-xl);
}
.math-stat {
text-align: center;
}
.math-stat-label {
display: block;
font-size: 12px;
color: var(--text-secondary);
}
.math-stat-value {
font-size: 24px;
font-weight: 700;
} |