mirror of
https://github.com/kremalicious/asi-calculator.git
synced 2024-12-22 09:23:16 +01:00
19 lines
364 B
CSS
19 lines
364 B
CSS
.grid {
|
|
display: grid;
|
|
gap: 2rem;
|
|
grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
|
|
max-width: calc(var(--max-width) * 1.5);
|
|
margin: 3rem auto;
|
|
}
|
|
|
|
.results {
|
|
border: 1px solid rgba(var(--foreground-rgb), 0.2);
|
|
border-radius: var(--border-radius);
|
|
padding: 1.25rem 1.5rem;
|
|
}
|
|
|
|
.results h3 {
|
|
margin-bottom: 1.5rem;
|
|
font-size: 1.1rem;
|
|
}
|