mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
92 lines
1.9 KiB
Plaintext
92 lines
1.9 KiB
Plaintext
/* ============================================================
|
|
|
|
Grid Layout Page
|
|
|
|
Datei : layout.less
|
|
Datum : 2020-04-30
|
|
Autor : Christine Slotty
|
|
Copyright : Gradio
|
|
|
|
============================================================*/
|
|
|
|
/*====================================
|
|
= BREAK POINTS =
|
|
====================================*/
|
|
|
|
/* https://scotch.io/courses/getting-started-with-less/responsive-and-media-queries */
|
|
@wide-screen-down: ~'(max-width:1199px)';
|
|
@desktop-down: ~'(max-width:991px)';
|
|
@tablet-down: ~'(max-width:767px)';
|
|
@phone-down: ~'(max-width:480px)';
|
|
@small-phone-down: ~'(max-width:320px)';
|
|
|
|
/* GRID */
|
|
.layout {
|
|
display: grid;
|
|
grid-template-rows: [top] 6vh [line2] 86vh [footer1] 3vh [footer2] 5vh [end];
|
|
grid-template-columns: [left1] 1fr [left2] 1fr [left3] 12fr [right3] 1fr [right2] 1fr [right1];
|
|
grid-template-areas: "header header header header header"
|
|
"left . center . ."
|
|
"footer footer footer footer footer"
|
|
"bottom bottom bottom bottom bottom";
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
@media @tablet-down {
|
|
.layout {
|
|
position: relative;
|
|
display: grid;
|
|
grid-template-rows: [top] 12vh [line2] 86vh [footer1] 3vh [footer2] 8vh [end];
|
|
grid-template-columns: [left1] 100vw [right1];
|
|
grid-template-areas: "header"
|
|
"center"
|
|
"footer"
|
|
"bottom";
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
}
|
|
|
|
.header-notify {
|
|
grid-area: header;
|
|
grid-column-start: right3;
|
|
grid-column-end: right2;
|
|
}
|
|
|
|
.sidebar1 {
|
|
grid-area: left;
|
|
grid-row-start: top;
|
|
grid-row-end: end;
|
|
}
|
|
|
|
@media @tablet-down {
|
|
.sidebar1 {
|
|
position: relative;
|
|
grid-area: header;
|
|
z-index: 2;
|
|
top: -300px;
|
|
right: 0px;
|
|
}
|
|
|
|
}
|
|
|
|
.content {
|
|
grid-area: center;
|
|
grid-row-start: line2;
|
|
grid-row-end: footer1;
|
|
}
|
|
|
|
.footer {
|
|
grid-area: footer;
|
|
grid-row-start: footer1;
|
|
grid-row-end: footer2;
|
|
}
|
|
|
|
.nav-bottom {
|
|
grid-area: bottom;
|
|
grid-row-start: footer2;
|
|
grid-row-end: end;
|
|
}
|