17 lines
237 B
CSS
17 lines
237 B
CSS
|
html, body {
|
||
|
height: 100%;
|
||
|
}
|
||
|
div#content {
|
||
|
display: block;
|
||
|
width: 95%;
|
||
|
height: 100%;
|
||
|
min-width: 75em;
|
||
|
max-width: 100em;
|
||
|
margin: auto;
|
||
|
}
|
||
|
|
||
|
/* Keep the main windows sized to the full viewable height */
|
||
|
.fullheight {
|
||
|
height: 100%;
|
||
|
}
|