45 lines
628 B
SCSS
45 lines
628 B
SCSS
/* License: AGPL-3.0-or-later WITH Web-Template-Output-Additional-Permission-3.0-or-later */
|
|
.minimalHeader {
|
|
background-color: whitesmoke;
|
|
height: 90px;
|
|
|
|
.container {
|
|
display: flex;
|
|
height: 100%;
|
|
|
|
img {
|
|
opacity: 0.5;
|
|
max-height: 50px;
|
|
margin: auto 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
.minimalFooter {
|
|
background-color: whitesmoke;
|
|
height:70px;
|
|
.container {
|
|
display: flex;
|
|
height: 100%;
|
|
|
|
> * {
|
|
opacity: 0.5;
|
|
margin: auto 10px auto 0;
|
|
}
|
|
}
|
|
|
|
a {
|
|
color:$charcoal
|
|
}
|
|
|
|
}
|
|
|
|
.site-content {
|
|
flex: 1;
|
|
}
|
|
|
|
body {
|
|
display: flex;
|
|
min-height: 100vh;
|
|
flex-direction: column;
|
|
}
|