45 lines
471 B
CSS
45 lines
471 B
CSS
.noscript {
|
|
box-sizing: border-box;
|
|
width: 100vw;
|
|
height: 100vh;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.spacer {
|
|
height: 3rem;
|
|
width: 100%;
|
|
}
|
|
|
|
.hidden {
|
|
display: none !important;
|
|
}
|
|
|
|
section.fullheight {
|
|
min-height: 100vh;
|
|
}
|
|
|
|
footer{
|
|
margin-top: 20rem;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* HELPERS */
|
|
.text-center {
|
|
text-align: center;
|
|
}
|
|
.text-left {
|
|
text-align: left;
|
|
}
|
|
.text-right {
|
|
text-align: right;
|
|
}
|
|
|
|
.level {
|
|
float: left;
|
|
margin-right: 1.5em;
|
|
} |