This repository has been archived on 2026-04-30. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
mechaimmensewarfare.com/src/styles/shared.css
T
2018-12-08 08:10:37 +11:00

50 lines
695 B
CSS

/* global defaults */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font: 13pt Helvetica, Arial;
width: 100vw;
height: 100vh;
display: flex;
flex-direction: column;
overflow-x: hidden;
overflow-y: auto;
}
/* footer */
footer {
flex: 0 1 auto;
justify-self: flex-end;
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
}
/* central display */
.central {
flex: 1;
display: flex;
flex-direction: column;
padding: 0 10px;
min-height: 100vh;
}
@media screen and (min-width: 480px) {
.central {
margin: 0 15%;
}
}
/* panels */
.panel {
flex: 1 1 auto;
display: flex;
flex-direction: column;
justify-content: flex-start;
}