comparison console/console.css @ 106:c06ec02217ee

many changes
author Sonny Piers <sonny@fastmail.net>
date Tue, 26 Jun 2012 12:02:14 +0200
parents
children 5cb4733c5189
comparison
equal deleted inserted replaced
105:fb50311997b5 106:c06ec02217ee
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;
39 }
40 #input > * {
41 display: inline-block;
42 height: 100%;
43 vertical-align: top;
44 }