Titivillus/static/base.css

44 lines
463 B
CSS
Raw Normal View History

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%;
2018-09-30 01:30:50 -04:00
height: 2em;
2018-09-19 15:56:59 -04:00
list-style-type: none;
2018-08-10 08:39:51 -04:00
background-color: #dddddd;
2018-09-30 01:30:50 -04:00
display: flex;
align-items: center;
2018-08-10 08:39:51 -04:00
}
2018-09-30 01:30:50 -04:00
.header span {
padding-right: 0.25em;
2018-08-10 08:39:51 -04:00
}
.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;
}