mirror of
https://github.com/phuoc-ng/csslayout.git
synced 2025-10-23 10:46:13 +02:00
33 lines
544 B
SCSS
33 lines
544 B
SCSS
:root {
|
|
--container-width: auto;
|
|
}
|
|
|
|
body {
|
|
background: #e2e8f0;
|
|
font-family: Space Grotesk, -apple-system, Arial, ui-sans-serif, system-ui;
|
|
font-size: 1rem;
|
|
font-weight: 300;
|
|
line-height: 1.5;
|
|
margin: 0;
|
|
}
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
.container {
|
|
margin: 0 auto;
|
|
padding: 0 1rem;
|
|
width: var(--container-width);
|
|
}
|
|
.divider {
|
|
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
|
|
}
|
|
.text--primary {
|
|
color: #6366f1;
|
|
}
|
|
|
|
@media (min-width: 1024px) {
|
|
:root {
|
|
--container-width: 64rem;
|
|
}
|
|
}
|