Full screen css structure
[mudsync.git] / data / web-static / css / main.css
1 *, *:before, *:after {
2     box-sizing: border-box;
3 }
4
5
6 body {
7     height: 100%;
8     display: flex;
9     flex-direction: column;
10     border: 0px;
11     margin: 0px;
12 }
13
14 #stream-output {
15     flex: 1;
16     min-height: 85vh;
17     max-height: 85vh;
18     background-color: #d5d5d5;
19     padding: 10px;
20 }
21
22 #input-box {
23     flex: 1;
24     min-height: 15vh;
25     max-height: 15vh;
26     background-color: #414141;
27     color: #d5d5d5;
28     padding: 10px;
29 }