| /* |
| * Licensed to the Apache Software Foundation (ASF) under one |
| * or more contributor license agreements. See the NOTICE file |
| * distributed with this work for additional information |
| * regarding copyright ownership. The ASF licenses this file |
| * to you under the Apache License, Version 2.0 (the |
| * "License"); you may not use this file except in compliance |
| * with the License. You may obtain a copy of the License at |
| * |
| * http://www.apache.org/licenses/LICENSE-2.0 |
| * |
| * Unless required by applicable law or agreed to in writing, |
| * software distributed under the License is distributed on an |
| * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| * KIND, either express or implied. See the License for the |
| * specific language governing permissions and limitations |
| * under the License. |
| */ |
| |
| body { |
| margin: 0; |
| padding: 36px 15px 0 50px; |
| background-color: #F0F0F0; |
| color: #666666; |
| font-size: 17px; |
| font-family: 'HelveticaNeue-Light', Helvetica, Arial, sans-serif; |
| font-weight: 300; |
| } |
| |
| a { |
| color: #666666; |
| } |
| |
| a:hover, a:active { |
| color: black; |
| } |
| |
| p { |
| width: 100%; |
| padding-left: 0px; |
| margin-top: 0; |
| margin-bottom: 0px; |
| } |
| |
| li { |
| border-top: 1px dotted; |
| width: 578px; |
| padding-top: 6px; |
| padding-bottom: 6px; |
| } |
| |
| h3 { |
| margin: 0px; |
| background-color: #666666; |
| color: #FFFFFF; |
| /*padding: 2px;*/ |
| font-size: 110%; |
| font-weight: bold; |
| } |
| |
| div.debug { |
| font-family: monospace; |
| margin-top: 20px; |
| margin-bottom: 50px; |
| } |
| |
| div.console-output { |
| background-color: #000000; |
| color: #24FE51; |
| overflow: auto; |
| padding: 10px; |
| } |
| |
| #result { |
| font-size: 200%; |
| margin: 0.5em; |
| padding: 0.5em; |
| |
| background: yellow; |
| |
| /* Mozilla: */ |
| background: -moz-linear-gradient(left, yellow, #00FF00); |
| |
| /* Chrome, Safari:*/ |
| background: -webkit-gradient(linear, left top, right top, from(yellow), to(#00FF00)); |
| /* MSIE */ |
| filter: progid:DXImageTransform.Microsoft.Gradient(StartColorStr='yellow', EndColorStr='#00FF00', GradientType=1); |
| |
| /* rounder corners */ |
| -moz-border-radius: 1em; |
| border-radius: 1em; |
| } |
| |
| #result span { |
| color: blue; |
| font-weight: bold; |
| } |
| |