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