/* * 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. */ /* ---------------------------------------------------------------------------- Cascaded Style Sheet for OpenBooks pages. The page is divided into 4 divisions. A fixed header and footer. A left menu. A central content section. All divisions are referred by id in HTML
tag. -------------------------------------------------------------------------- */ #header { width: 100%; height: 30px; margin: 5px; padding: 10px; background: #fff; z-index: 100; font-size:120%; border-bottom: 1px solid #999; } #left { position: absolute; width: 120px; top: 60px; margin-left:10px; font:16pt; } #content { top: 0; margin-left: 160px; margin-right: 300px; margin-top:30px; padding: 10px 10px; } #footer { position: fixed; width: 100%; height: 20px; padding-top: 2px; padding-bottom: 2px; bottom: 0; z-index: 10; background: #fff; text-align: left; border-top: 1px solid #000; font-size:120%; }