LoveIt/assets/css/_core/_layout.scss
2019-08-22 01:22:33 +08:00

49 lines
No EOL
683 B
SCSS

/** Layout **/
.wrapper {
display: flex;
flex-direction: column;
min-height: 98vh;
width: 100%;
}
.navbar {
display: block !important;
position: fixed;
width: 100%;
z-index: 100;
height: 4rem;
line-height: 4rem;
.container {
width: auto;
max-width: 1200px;
text-align: center;
margin: 0 auto;
display: flex;
justify-content: space-between;
}
}
.main {
flex: 1 0 auto;
}
.container {
padding-left: 1rem;
padding-right: 1rem;
}
.footer {
height: 2rem;
width: 100%;
text-align: center;
line-height: 1.5rem;
padding-top: 2rem;
}
.notfound {
font-size: 2rem;
transform: translateY(35vh);
text-align: center;
}