asi-calculator/app/page.module.css

39 lines
592 B
CSS
Raw Normal View History

2024-03-30 01:32:46 +01:00
.main {
flex: 1 0 auto;
2024-03-29 22:54:07 +01:00
}
.title,
.description {
color: rgb(var(--foreground-rgb-highlight));
2024-03-29 12:36:05 +01:00
max-width: var(--max-width);
2024-03-29 15:06:40 +01:00
margin: auto;
2024-03-29 12:36:05 +01:00
}
2024-03-29 15:06:40 +01:00
.title {
2024-03-30 01:32:46 +01:00
font-size: clamp(1.3rem, 10vw, 2.5rem);
2024-03-30 19:27:18 +01:00
margin-top: 5vh;
2024-03-29 22:54:07 +01:00
}
.description {
2024-03-30 18:22:30 +01:00
font-size: clamp(1.1rem, 10vw, 1.5rem);
2024-03-29 12:36:05 +01:00
}
2024-03-29 19:54:14 +01:00
2024-03-30 19:11:24 +01:00
.grid {
display: grid;
2024-03-30 19:27:18 +01:00
gap: 1.5rem;
2024-03-30 19:11:24 +01:00
grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
2024-03-30 19:27:18 +01:00
}
.breakout {
2024-03-30 19:11:24 +01:00
max-width: calc(var(--max-width) * 1.5);
margin: 3rem auto;
}
2024-03-29 19:54:14 +01:00
.footer {
2024-03-30 01:32:46 +01:00
flex-shrink: 0;
2024-03-29 19:54:14 +01:00
font-size: 0.8rem;
2024-03-30 02:20:15 +01:00
width: 100%;
2024-03-30 18:05:01 +01:00
max-width: var(--max-width);
2024-03-30 02:20:15 +01:00
margin: 3rem auto 0 auto;
2024-03-29 19:54:14 +01:00
}