Compare commits

..

No commits in common. "0e3f0056390e196aa8b73e8b3587cf88cb8e5661" and "f973dccd2789ec39866192c204b75229931e095f" have entirely different histories.

6 changed files with 63 additions and 47 deletions

View File

@ -38,4 +38,17 @@
color: $-grey; color: $-grey;
} }
} }
.LP-Pagination__Previous{
&:before{
content: "«";
}
}
.LP-Pagination__Next{
&:before{
content: "»";
}
}
} }

View File

@ -34,6 +34,7 @@
border-left: none; border-left: none;
min-width: 60px; min-width: 60px;
background-color: $-almost-white; background-color: $-almost-white;
height: 100%;
padding-top: 25px; padding-top: 25px;
.LP-Menu__List{ .LP-Menu__List{

View File

@ -6,7 +6,6 @@ $-logo-height: 45px;
justify-content: space-between; justify-content: space-between;
height: 60px; height: 60px;
box-shadow: 0 0 2px $-light-brown; box-shadow: 0 0 2px $-light-brown;
grid-area: header;
&__Navigation{ &__Navigation{
flex-grow: 2; flex-grow: 2;

View File

@ -1,5 +1,5 @@
<div class="LP-Wrapper__Site">
{{> @header}} {{> @header}}
<div class="LP-Main">
<aside class="LP-Main__Sidebar"> <aside class="LP-Main__Sidebar">
{{> @navigation modifier='--sidebar'}} {{> @navigation modifier='--sidebar'}}
</aside> </aside>

View File

@ -42,27 +42,27 @@ html{
body{ body{
height: 100%; height: 100%;
margin: 0; margin: 0;
padding: 0;
} }
.LP-Wrapper__Site{ .LP-Main{
display: grid; display: table;
grid-template-columns: $-sidebar-width 1fr; flex-direction: row-reverse;
grid-template-rows: auto 1fr; height: calc(100% - 61px);
grid-template-areas: "header header" "sidebar content"; width: 100%;
margin: 0;
padding: 0;
}
.LP-Main__Content{ .LP-Main__Content{
display: table-cell;
width: calc(100% - 300px);
min-height: 1px; min-height: 1px;
padding: 25px; padding: 25px;
grid-area: content;
} }
.LP-Main__Sidebar{ .LP-Main__Sidebar{
grid-area: sidebar; display: table-cell;
background-color: #f9f9f9; width: $-sidebar-width;
flex-grow: 0;
height: 100%;
}
} }
.LP-Section{ .LP-Section{

View File

@ -1,3 +1,4 @@
@charset "UTF-8";
@font-face { @font-face {
font-family: Crimson; font-family: Crimson;
src: url("fonts/Crimson/CrimsonText-Regular.ttf"), url("fonts/Crimson/CrimsonText-Bold.ttf"), url("fonts/Crimson/CrimsonText-Italic.ttf"); } src: url("fonts/Crimson/CrimsonText-Regular.ttf"), url("fonts/Crimson/CrimsonText-Bold.ttf"), url("fonts/Crimson/CrimsonText-Italic.ttf"); }
@ -13,25 +14,23 @@ html {
body { body {
height: 100%; height: 100%;
margin: 0; margin: 0; }
padding: 0; }
.LP-Wrapper__Site { .LP-Main {
display: grid; display: table;
grid-template-columns: 250px 1fr; flex-direction: row-reverse;
grid-template-rows: auto 1fr; height: calc(100% - 61px);
grid-template-areas: "header header" "sidebar content"; width: 100%; }
margin: 0; .LP-Main .LP-Main__Content {
padding: 0; } display: table-cell;
width: calc(100% - 300px);
.LP-Main__Content {
min-height: 1px; min-height: 1px;
padding: 25px; padding: 25px; }
grid-area: content; } .LP-Main .LP-Main__Sidebar {
display: table-cell;
.LP-Main__Sidebar { width: 250px;
grid-area: sidebar; flex-grow: 0;
background-color: #f9f9f9; } height: 100%; }
.LP-Section { .LP-Section {
clear: both; clear: both;
@ -275,6 +274,10 @@ body {
background-color: #D7CEC7; background-color: #D7CEC7;
border-radius: 2px; border-radius: 2px;
color: #565656; } color: #565656; }
.LP-Pagination .LP-Pagination__Previous:before {
content: "«"; }
.LP-Pagination .LP-Pagination__Next:before {
content: "»"; }
.LP-Content { .LP-Content {
padding: 35px; } padding: 35px; }
@ -388,6 +391,7 @@ body {
border-left: none; border-left: none;
min-width: 60px; min-width: 60px;
background-color: #f9f9f9; background-color: #f9f9f9;
height: 100%;
padding-top: 25px; } padding-top: 25px; }
.LP-Menu--sidebar .LP-Menu__List { .LP-Menu--sidebar .LP-Menu__List {
flex-direction: column; } flex-direction: column; }
@ -436,8 +440,7 @@ body {
align-items: center; align-items: center;
justify-content: space-between; justify-content: space-between;
height: 60px; height: 60px;
box-shadow: 0 0 2px #C09F80; box-shadow: 0 0 2px #C09F80; }
grid-area: header; }
.LP-Header__Navigation { .LP-Header__Navigation {
flex-grow: 2; } flex-grow: 2; }
.LP-Header__Logo { .LP-Header__Logo {