blob: c24d03f820c76ce48211df57bc1c036e36ed7f17 [file] [log] [blame]
Felix Meschberger919044c2009-09-08 08:09:20 +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 * The webconsole.css is the main CSS which sets up the following parts
20 *
21 * div main -> outermost div just inside body
22 * div lead -> the page lead with title and logo
23 * div technav -> the top navigation
24 * div content -> the div surrounding the content being rendered by
25 * the plugin in the renderContent (or service) method
26 *
27 * See also http://felix.apache.org/site/branding-the-web-console.html
28 */
29
30#main {
31 font-family: Verdana, Arial, Helvetica, sans-serif;
32 font-size: 10px;
33 color: black;
34 background-color: white;
35 border-collapse: collapse;
36 padding: 0px;
37 margin: 30px;
38 position: absolute;
39 text-align: left;
40 border-color: black;
41}
42
43#lead {
44 color: #00678C;
45 /* color: #ffffff; */
46 margin: 0px 0px 26px 0px;
47 padding: 0px;
48 height: 100px;
49}
50
51/* This contains the page title */
52#lead h1 {
53 margin: 0px;
54 padding: 5px 0 0 8px;
55 font-size: 300%;
56 font-weight: bold;
57 line-height: 120%;
58 /* account for 5px top padding to get a total of 100px */
59 height: 95px;
60 float: left;
61}
62
63#lead br {
64 line-height: 20px;
65}
66
67/* This contains the logo */
68#lead p {
69 margin: 0px;
70 padding: 0px;
71 height: 100px;
72 position:absolute;
73 right: 0px;
74}
75
76/* This contains the top navigation */
77#technav {
78 border-bottom: 1px solid #6181A9;
79 border-top: 1px solid #6181A9;
80 color: black;
81 font-size: 10px;
82 font-weight: bold;
83 line-height: 21px;
84 padding: 0;
85 margin: 0;
86}
87
88#technav a {
89 text-decoration: none;
90 padding: 3px 10px 3px 10px;
91 color: #6181A9;
92 text-decoration: none;
93}
94
95#technav a:hover {
96 background-color: black;
97}
98
99/* Special rendering of the "button" for the current page */
100#technav .technavat {
101 text-decoration: none;
102 padding: 3px 10px 3px 10px;
103 background-color: #B6CAE4;
104 color: black;
105}
106
107#technav .technavitem {
108 display: inline;
109 white-space: nowrap;
110}
111
112
113/* CENTRAL CONTENT AREA STYLING */
114#content {
115 position: relative;
116}
117
118#content A:link {
119 color: #336600;
120 text-decoration: underline;
121}
122
123#content A:visited {
124 color: #666666;
125 text-decoration: underline;
126}
127
128#content A:hover {
129 color: #ffffff;
130 background-color: #336600;
131 text-decoration: none;
132}
133
134#content A:active {
135 color: #ffffff;
136 background-color: #000000;
137 text-decoration: none;
138}
139