106
|
1 html, body {
|
|
2 width: 100%;
|
|
3 height: 100%;
|
|
4 }
|
|
5 body {
|
|
6 margin: 0;
|
|
7 /*FIXME: delete me*/
|
|
8 overflow: hidden;
|
|
9 }
|
|
10 .entry {
|
|
11 width: 100%;
|
|
12 margin-bottom: 15px;
|
|
13 }
|
|
14 .entry pre {
|
|
15 margin: 0;
|
|
16 }
|
|
17 #entries {
|
|
18 overflow: auto;
|
|
19 height: -webkit-calc(100% - (30px + 100px));
|
|
20 height: -moz-calc(100% - (30px + 100px));
|
|
21 }
|
|
22 #toolbar {
|
|
23 width: 100%;
|
|
24 height: 30px;
|
|
25 }
|
|
26 #input {
|
|
27 height: 100px;
|
|
28 width: 100%;
|
|
29 }
|
|
30 #input textarea {
|
|
31 /*border: none;*/
|
|
32 padding: 0;
|
|
33 resize: none;
|
|
34 width: -webkit-calc(100% - 80px);
|
|
35 width: -moz-calc(100% - 80px);
|
|
36 }
|
|
37 #input input {
|
|
38 width: 65px;
|
108
|
39 -webkit-appearance: none;
|
106
|
40 }
|
|
41 #input > * {
|
|
42 display: inline-block;
|
|
43 height: 100%;
|
|
44 vertical-align: top;
|
|
45 } |