2018-09-19 15:56:59 -04:00
|
|
|
:root {
|
2018-09-20 13:09:24 -04:00
|
|
|
--header-height: 1.25em;
|
2018-09-19 15:56:59 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#globalWrapper {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
2018-08-10 08:39:51 -04:00
|
|
|
.header {
|
2018-09-19 15:56:59 -04:00
|
|
|
position: sticky;
|
2018-08-10 08:39:51 -04:00
|
|
|
top: 0;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
2018-09-19 15:56:59 -04:00
|
|
|
width: 100%;
|
|
|
|
height: var(--header-height);
|
|
|
|
list-style-type: none;
|
2018-08-10 08:39:51 -04:00
|
|
|
background-color: #dddddd;
|
|
|
|
}
|
|
|
|
|
|
|
|
.header li {
|
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
|
|
|
|
.header a {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
#headerHidden {
|
2018-09-20 13:09:24 -04:00
|
|
|
width: 1em;
|
2018-08-10 08:39:51 -04:00
|
|
|
}
|
2018-09-19 15:56:59 -04:00
|
|
|
|
|
|
|
#alerts {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#content {
|
|
|
|
flex: auto;
|
|
|
|
overflow: auto;
|
|
|
|
}
|