The (very WIP) home of the next versions of my web presences
1/* The big container that holds all the primary content: header, main, etc. */
2
3@import '../foundations/_index.css';
4@import '../foundations/grid.css';
5
6.container {
7 background: var(--bg);
8 padding-block: var(--grid-base);
9 padding-inline: calc(var(--grid-base) * 1.333);
10
11 @include foundations.shadow;
12 @include foundations.round-corner;
13}