Felix Meschberger | 044c4bf | 2012-01-31 12:47:45 +0000 | [diff] [blame^] | 1 | /* |
| 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 | |
| 23 | div#console { |
| 24 | font-size: 12px; |
| 25 | margin: 12px; |
| 26 | } |
| 27 | |
| 28 | div#term { |
| 29 | display: inline-block; |
| 30 | } |
| 31 | |
| 32 | pre.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 | } |
| 42 | pre.stat span { |
| 43 | padding: 0px; |
| 44 | } |
| 45 | pre.stat .on { |
| 46 | background-color: #080; |
| 47 | font-weight: bold; |
| 48 | color: white; |
| 49 | cursor: pointer; |
| 50 | } |
| 51 | pre.stat .off { |
| 52 | background-color: #888; |
| 53 | font-weight: bold; |
| 54 | color: white; |
| 55 | cursor: pointer; |
| 56 | } |
| 57 | pre.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 | } |
| 67 | pre.term span.f0 { color: #000000; } |
| 68 | pre.term span.f1 { color: #c00006; } |
| 69 | pre.term span.f2 { color: #1bc806; } |
| 70 | pre.term span.f3 { color: #c3c609; } |
| 71 | pre.term span.f4 { color: #0000c2; } |
| 72 | pre.term span.f5 { color: #bf00c2; } |
| 73 | pre.term span.f6 { color: #19c4c2; } |
| 74 | pre.term span.f7 { color: #f2f2f2; } |
| 75 | pre.term span.f12 { color: transparent; } |
| 76 | pre.term span.f14 { color: #000000; } |
| 77 | pre.term span.f15 { color: #bbbbbb; } |
| 78 | pre.term span.b0 { background-color: #000000; } |
| 79 | pre.term span.b1 { background-color: #cc2300; } |
| 80 | pre.term span.b2 { background-color: #00cc00; } |
| 81 | pre.term span.b3 { background-color: #cccc00; } |
| 82 | pre.term span.b4 { background-color: #0e2acc; } |
| 83 | pre.term span.b5 { background-color: #cc34cc; } |
| 84 | pre.term span.b6 { background-color: #00cccc; } |
| 85 | pre.term span.b7 { background-color: #f5f5f5; } |
| 86 | pre.term span.b12 { background-color: #555555; } |
| 87 | pre.term span.b14 { background-color: transparent; } |
| 88 | pre.term span.b15 { background-color: #ffffff; } |
| 89 | pre.term span.ul { text-decoration: underline; } |
| 90 | pre.term span.b { font-weight:900; } |
| 91 | |