Blob Blame History Raw
/*
 * stylesheet.css --  This file customizes httpd default visual style
 * using The CentOS Project corporate visual style.
 *
 * Copyright (C) 2013 The CentOS Artwork SIG
 *
 * This CSS is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This CSS is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 *
 */

/* Reset browsers defaults
-----------------------------------------------*/
@import url("/webenv/stylesheet.css");

/* Special decoration for some links' classes
-----------------------------------------------*/
a.www:before,
a.http:before,
a.https:before {
    white-space: nowrap;
    content: url("/webenv/images/a-www.png");
    margin: 0 0.2em;
    }

/* Body
-----------------------------------------------*/
body {
    padding: 0 40px;
    }

/* Headings
-----------------------------------------------*/
h1.title {
	background: #204C8D url("/webenv/images/header.png") 0 0 repeat;
    color: #fff;
    padding: 1.5em;
	text-align: center;
	}

h2 { 
	margin-top: 0.3em; 
	font-size: 1.3em;
	}

/* Page Content
-----------------------------------------------*/
div.content {
	padding: 1em 5em;
	clear: both;
    }

div.content-columns {
	/* Setting relative positioning allows for 
	absolute positioning for sub-classes */
    position: relative;
    padding-top: 1em;
    }

div.content-column-left {
    /* Value for IE/Win; will be overwritten for other browsers */
	width: 47%;
    padding-right: 3%;
    float: left;
    }

div.content-column-right {
    /* Values for IE/Win; will be overwritten for other browsers */
	width: 47%;
    padding-left: 3%;
    float: left;
    }

div.content-columns>.content-column-left, 
div.content-columns>.content-column-right {
	/* Non-IE/Win */
    }

img {
	border: 2px solid #fff;
    padding: 2px;
    margin: 2px;
    }

a:hover img {
    border: 2px solid #3399FF;
	}

.small { font-size: small; }

/* Admonitions
-----------------------------------------------*/

div.note, 
div.tip,
div.important,
div.caution,
div.warning {
    margin: 1.5em 0 1.5em 0 !important;
    padding-left: 0.2em;
    }

div.note img, 
div.tip img,
div.important img,
div.caution img,
div.warning img {
	border: none;
	}

div.note table, div.note table,
div.tip table, div.tip table,
div.important table, div.important table,
div.caution table, div.caution table,
div.warning table, div.warning table {
    margin: 0;
    border-width: 1px;
    border-left-width: 5px;
    border-style: solid;
    width: 100%;
    }

div.note table, 
div.tip table,
div.important table,
div.caution table,
div.warning table {
    border-color: #F6E7D2;
    background-color: #FFF8EC;
    background-image: url("/webenv/images/msg-bg-orange.png");
    }

div.note table {
	border-color: #D2E0F6; 
	background-color: #ECF4FF;
    background-image: url("/webenv/images/msg-bg-blue.png");
    }

div.note table th, div.note table td, 
div.tip table th, div.tip table td,
div.important table th, div.important table td,
div.caution table th, div.caution table td,
div.warning table th, div.warning table td {
    padding: 0;
    border: none;
    }

div.note table th, 
div.tip table th,
div.important table th, 
div.caution table th, 
div.warning table th {
    font-size: 1.4em;
    padding: 1em 0 0 0;
    }

div.note table td img,
div.tip table td img,
div.important table td img,
div.caution table td img,
div.warning table td img {
    margin: 10px;
    }

div.note table td p,
div.tip table td p,
div.important table td p,
div.caution table td p,
div.warning table td p {
    margin: 10px 25px 15px 0;
    }

div.note pre,
div.tip pre,
div.important pre,
div.caution pre,
div.warning pre {
    border: none;
    background: #0F0F0F;
    color: #FFFFFF;
    margin: 0 15px 1em 0;
    padding: 0.5em 1em 0.5em 1em;
    }