You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
280 B
CSS
22 lines
280 B
CSS
6 years ago
|
.container {
|
||
|
height: 100%;
|
||
|
display: grid;
|
||
|
grid-gap: 3px;
|
||
|
grid-template-columns: repeat(12, 1fr);
|
||
|
grid-template-rows: 40px auto 40px;
|
||
|
}
|
||
|
|
||
|
.header {
|
||
|
grid-column: 1 / -1;
|
||
|
}
|
||
|
|
||
|
.menu {}
|
||
|
|
||
|
.content {
|
||
|
grid-column: 2 / -1;
|
||
|
}
|
||
|
|
||
|
.footer {
|
||
|
grid-column: 1 / -1;
|
||
|
}
|