LoveIt/assets/css/_core/_layout.scss

45 lines
614 B
SCSS
Raw Normal View History

2019-08-11 19:36:19 +02:00
/** Layout **/
.wrapper {
display: flex;
flex-direction: column;
min-height: 98vh;
2019-08-11 19:36:19 +02:00
width: 100%;
}
.navbar {
height: 4rem;
line-height: 4rem;
width: 100%;
.container {
width: auto;
max-width: 1200px;
text-align: center;
margin: 0 auto;
display: flex;
justify-content: space-between;
}
}
.main {
flex: 1 0 auto;
}
.container {
2019-08-11 19:36:19 +02:00
padding-left: 1em;
padding-right: 1em;
}
.footer {
height: 2rem;
2019-08-11 19:36:19 +02:00
width: 100%;
text-align: center;
2019-08-16 22:09:41 +02:00
line-height: 1.4rem;
padding-top: 1em;
2019-08-11 19:36:19 +02:00
}
.notfound {
font-size: 2em;
transform: translateY(35vh);
text-align: center;
}