comparison tty.css @ 0:bd412f63ce0d

Put this project under version control, finally.
author John "Elwin" Edwards <elwin@sdf.org>
date Sun, 06 May 2012 08:45:40 -0700
parents
children 188bbd857124
comparison
equal deleted inserted replaced
-1:000000000000 0:bd412f63ce0d
1 div#top {
2 font-size: 1.2em;
3 text-align: center;
4 margin: 0.2em;
5 }
6 img#bell {
7 visibility: hidden;
8 margin-left: 2em;
9 }
10 div.keyrow {
11 font-size: 1.2em;
12 }
13 div.keyrow > div:first-child {
14 clear: left;
15 }
16 div.key {
17 width: 2em;
18 height: 2em;
19 float: left;
20 border: 2px solid black;
21 margin: 0.2em;
22 text-align: center;
23 }
24 div.keysel {
25 width: 2em;
26 height: 2em;
27 float: left;
28 border: 2px solid black;
29 margin: 0.2em;
30 text-align: center;
31 background-color: #C0FFC0;
32 }
33 div#shiftkey {
34 width: 4em;
35 }
36 div#ctrlkey {
37 width: 3em;
38 }
39 div#spacebar {
40 width: 8em;
41 margin-left: 12em;
42 }
43 div#termwrap {
44 margin: 0.5em auto;
45 padding: 1em;
46 background-color: #808080;
47 border: 0.25em solid #202020;
48 border-radius: 1em;
49 }
50 div#inwrap {
51 overflow-y: scroll;
52 }
53 div#term {
54 display: table;
55 font-size: 12px;
56 font-family: monospace;
57 white-space: pre;
58 }
59 div#term > div {
60 display: table-row-group;
61 }
62 div.termrow {
63 display: table-row;
64 }
65 span.termcell {
66 display: table-cell;
67 }
68 div.rbutton {
69 float: right;
70 clear: right;
71 border: 2px solid black;
72 text-align: center;
73 margin: 0.2em;
74 font-size: 1.2em;
75 padding: 0.1em;
76 }
77 div.rbutton > span {
78 border: 1px solid black;
79 padding: 0 0.1em;
80 }
81 div#debug {
82 width: 100%;
83 height: 10em;
84 overflow: scroll;
85 white-space: pre;
86 clear: both;
87 }
88 div#debug > div {
89 font-family: monospace;
90 }