dvb/app/res/css/layout.css
2017-12-25 00:50:54 +01:00

22 lines
340 B
CSS

/* LAYOUT */
.container {
display: grid;
grid-template-columns: 1fr calc(100vh / 4);
grid-template-rows: auto 1fr;
grid-template-areas: "top side" "body side";
background: var(--clr-light);
color: var(--clr-dark);
}
.container .top {
grid-area: top;
}
.container .side {
grid-area: side;
}
.container .body {
grid-area: body;
}