mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
29 lines
499 B
CSS
29 lines
499 B
CSS
/* ============================================================
|
|
|
|
Grid Layout Page
|
|
|
|
Datei : layout.css
|
|
Datum : 2020-04-30
|
|
Autor : Christine Slotty
|
|
Copyright : Gradio
|
|
|
|
============================================================*/
|
|
.page {
|
|
display: grid;
|
|
grid-template-rows: 12vh 70vh 10vh 5vh;
|
|
grid-template-columns: 1fr 5fr 1fr;
|
|
grid-gap: .25em;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
.header,
|
|
.nav-bottom,
|
|
.footer {
|
|
grid-column-start: 1;
|
|
grid-column-end: 4;
|
|
}
|
|
|
|
|
|
|