blob: f693de7ba64733afeed65803192c31f53e5c2fed [file] [log] [blame]
Felix Meschberger044c4bf2012-01-31 12:47:45 +00001/*
2 * Licensed to the Apache Software Foundation (ASF) under one or more
3 * contributor license agreements. See the NOTICE file distributed with
4 * this work for additional information regarding copyright ownership.
5 * The ASF licenses this file to You under the Apache License, Version 2.0
6 * (the "License"); you may not use this file except in compliance with
7 * the License. You may obtain a copy of the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 */
17
18/**
19 * Based on http://antony.lesuisse.org/software/ajaxterm/
20 * Public Domain License
21 */
22
23div#console {
24 font-size: 12px;
25 margin: 12px;
26}
27
28div#term {
29 display: inline-block;
30}
31
32pre.stat {
33 margin: 0px;
34 padding: 4px;
35 display: block;
36 font-family: monospace;
37 white-space: pre;
38 background-color: black;
39 border-top: 1px solid black;
40 color: white;
41}
42pre.stat span {
43 padding: 0px;
44}
45pre.stat .on {
46 background-color: #080;
47 font-weight: bold;
48 color: white;
49 cursor: pointer;
50}
51pre.stat .off {
52 background-color: #888;
53 font-weight: bold;
54 color: white;
55 cursor: pointer;
56}
57pre.term {
58 margin: 0px;
59 padding: 4px;
60 display: block;
61 font-family: monospace;
62 white-space: pre;
63 background:#000;
64 border-top: 1px solid white;
65 color: #eee;
66}
67pre.term span.f0 { color: #000000; }
68pre.term span.f1 { color: #c00006; }
69pre.term span.f2 { color: #1bc806; }
70pre.term span.f3 { color: #c3c609; }
71pre.term span.f4 { color: #0000c2; }
72pre.term span.f5 { color: #bf00c2; }
73pre.term span.f6 { color: #19c4c2; }
74pre.term span.f7 { color: #f2f2f2; }
75pre.term span.f12 { color: transparent; }
76pre.term span.f14 { color: #000000; }
77pre.term span.f15 { color: #bbbbbb; }
78pre.term span.b0 { background-color: #000000; }
79pre.term span.b1 { background-color: #cc2300; }
80pre.term span.b2 { background-color: #00cc00; }
81pre.term span.b3 { background-color: #cccc00; }
82pre.term span.b4 { background-color: #0e2acc; }
83pre.term span.b5 { background-color: #cc34cc; }
84pre.term span.b6 { background-color: #00cccc; }
85pre.term span.b7 { background-color: #f5f5f5; }
86pre.term span.b12 { background-color: #555555; }
87pre.term span.b14 { background-color: transparent; }
88pre.term span.b15 { background-color: #ffffff; }
89pre.term span.ul { text-decoration: underline; }
90pre.term span.b { font-weight:900; }
91