Titivillus/static/base.css
2018-09-20 13:09:24 -04:00

46 lines
471 B
CSS

:root {
--header-height: 1.25em;
}
body {
margin: 0;
}
#globalWrapper {
display: flex;
flex-direction: column;
height: 100%;
}
.header {
position: sticky;
top: 0;
margin: 0;
padding: 0;
width: 100%;
height: var(--header-height);
list-style-type: none;
background-color: #dddddd;
}
.header li {
display: inline;
}
.header a {
text-decoration: none;
}
#headerHidden {
width: 1em;
}
#alerts {
margin: 0;
}
#content {
flex: auto;
overflow: auto;
}