|
- /*
- * 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.
- *
- */
- h2 {
- font-size: 200%;
- background-color: white;
- }
-
- h3 {
- font-size: 130%;
- color: white;
- background-color: #525D76;
- }
-
- h4 {
- color: white;
- background-color: #828DA6;
- }
-
- h5 {
- font-size: 100%;
- color: white;
- background-color: #a6adbe;
- margin-top: .5rem;
- margin-bottom: .5rem;
- }
-
- h6 {
- font-size: 100%;
- color: white;
- background-color: #c1c5d1;
- margin-top: .5rem;
- margin-bottom: .5rem;
- }
-
- h5 + p, h6 + p {
- margin-top: .5rem;
- margin-bottom: .5rem;
- }
-
- h1 > a, h2 > a, h3 > a, h4 > a, h5 > a, h6 > a {
- color: white;
- }
-
- h1 > a:visited, h2 > a:visited, h3 > a:visited, h4 > a:visited, h5 > a:visited, h6 > a:visited,
- h1 > a:hover, h2 > a:hover, h3 > a:hover, h4 > a:hover, h5 > a:hover, h6 > a:hover {
- color: lightskyblue;
- }
-
- td {
- background-color: #eeeeee;
- color: black;
- }
-
- /* first row */
- table tr:first-child td {
- background-color: silver;
- color: black;
- }
-
- /* or th as first row */
- table th {
- background-color: silver;
- color: black;
- }
-
- code {
- white-space: nowrap;
- }
-
- pre {
- background-color: #efefef;
- margin-right: 4rem;
- margin-left: 4rem;
- }
-
- /* code snippets in examples and tutorials */
- .code {
- background: #efefef;
- }
-
- /* highlight console output */
- .output {
- color: white;
- background: #837A67;
- }
-
- ul.inlinelist {
- list-style-type: none;
- margin-left: 0;
- padding: 0;
- }
-
- div.float {
- margin-top: 0.5rem;
- width: 100%;
- min-height: 1.5rem;
- line-height: 1.5rem;
- background-color: silver;
- }
-
- div.float + table {
- width: 100%;
- table-layout: fixed;
- }
-
- div.float + table th:first-child {
- width: 20%;
- white-space: nowrap;
- }
-
- div.float + table tr:first-child {
- width: 20%;
- white-space: nowrap;
- }
-
- span.left {
- float: left;
- font-family: Arial, Helvetica, sans-serif;
- font-weight: bold;
- }
-
- span.right {
- float: right;
- }
-
- span.left, span.right {
- vertical-align: middle;
- background-color: silver;
- }
-
- ol.refs {
- counter-reset: refs;
- }
-
- ol.refs > li {
- list-style: none;
- position: relative;
- }
-
- ol.refs > li:before {
- content: "[" counter(refs, decimal) "] ";
- counter-increment: refs;
- position: absolute;
- left: -2rem;
- }
|