blob: 0e806a1324c4182bb5b7f0c1eb6a8118aee978a0 [file] [log] [blame]
Guillaume Nodet756cf8e2009-08-07 09:48:21 +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
23body {
24 background-color: #888;
25}
26
27div#console {
28 font-size: 12px;
29 margin: 12px;
30}
31
32div#term {
33 display: inline-block;
34}
35
36pre.stat {
37 margin: 0px;
38 padding: 4px;
39 display: block;
40 font-family: monospace;
41 white-space: pre;
42 background-color: black;
43 border-top: 1px solid black;
44 color: white;
45}
46pre.stat span {
47 padding: 0px;
48}
49pre.stat .on {
50 background-color: #080;
51 font-weight: bold;
52 color: white;
53 cursor: pointer;
54}
55pre.stat .off {
56 background-color: #888;
57 font-weight: bold;
58 color: white;
59 cursor: pointer;
60}
61pre.term {
62 margin: 0px;
63 padding: 4px;
64 display: block;
65 font-family: monospace;
66 white-space: pre;
67 background:#000;
68 border-top: 1px solid white;
69 color: #eee;
70}
71pre.term span.f0 { color: #000000; }
72pre.term span.f1 { color: #c00006; }
73pre.term span.f2 { color: #1bc806; }
74pre.term span.f3 { color: #c3c609; }
75pre.term span.f4 { color: #0000c2; }
76pre.term span.f5 { color: #bf00c2; }
77pre.term span.f6 { color: #19c4c2; }
78pre.term span.f7 { color: #f2f2f2; }
79pre.term span.f12 { color: transparent; }
80pre.term span.f14 { color: #000000; }
81pre.term span.f15 { color: #bbbbbb; }
82pre.term span.b0 { background-color: #000000; }
83pre.term span.b1 { background-color: #cc2300; }
84pre.term span.b2 { background-color: #00cc00; }
85pre.term span.b3 { background-color: #cccc00; }
86pre.term span.b4 { background-color: #0e2acc; }
87pre.term span.b5 { background-color: #cc34cc; }
88pre.term span.b6 { background-color: #00cccc; }
89pre.term span.b7 { background-color: #f5f5f5; }
90pre.term span.b12 { background-color: #555555; }
91pre.term span.b14 { background-color: transparent; }
92pre.term span.b15 { background-color: #ffffff; }
93pre.term span.ul { text-decoration: underline; }
94pre.term span.b { font-weight:900; }
95