Files
gitx/Site/assets/css/master.css
T
Johannes Gilger 788cd7163b Site: W3C-Valid and CSS/HTML corrections
* Makes all the pages (except "See it") W3C Valid
* Adjusts a few texts here and there a little bit
* Makes the menubar span the whole div and display correct on FF/Linux
* Moves "GitX" in the header a few px down to center it

Signed-off-by: Johannes Gilger <heipei@hackvalue.de>
2009-09-06 14:38:48 +02:00

256 lines
3.1 KiB
CSS

@import "usermanual.css";
body
{
background-color: #abc;
font-family: 'Lucida Grande', Arial;
background: url('../images/bg.png') repeat;
}
a
{
color: #527cb2;
font-weight: bold;
text-decoration: none;
}
a:hover
{
background-color: #b5d5f8;
}
a:visited
{
color: ##527cb2;
}
p
{
margin-left: 10px;
margin-right: 10px;
/* clear: both;*/
text-align: justify;
text-justify: auto;
}
h2, h3, h4
{
clear: both;
}
h3, h4
{
margin-left: 10px;
}
#container
{
width: 800px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
-moz-border-radius-topleft: 0px;
-webkit-border-top-left-radius: 0px;
-moz-border-radius-topright: 0px;
-webkit-border-top-right-radius: 0px;
border: 1px solid #999999;
padding-bottom: 5px;
background-color: #CCCCCC;
margin: 10px auto 10px auto;
}
#header
{
height: 90px;
font-size: 400%;
color: white;
text-align: center;
padding-top: 10px;
background-image: url('../images/header.jpg');
background-repeat: no-repeat;
background-position:absolute;
}
#content
{
padding: 10px;
clear: both;
background-color: white;
border-top: solid 1px #999999;
font-size: 80%;
}
#footer
{
color: #999999;
text-align: center;
background-color: #CCCCCC;
padding: 5px 5px 0px 5px;
font-size: 60%;
border-top: 1px solid #999999;
clear: both;
}
/*Download*/
#download
{
float: right;
}
#download_link
{
display: block;
height: 60px;
width: 194px;
color: #FFFFFF;
font-size: 175%;
text-align: center;
background-image: url('../images/download.png');
background-repeat: no-repeat;
background-position:center;
margin: 20px 0px 0px 20px;
padding: 20px 20px 10px 20px;
}
#donate_link
{
font-size: 70%;
text-align: center;
}
.nohover a:hover
{
background-color: white;
}
#version
{
font-size: 80%;
}
/* Video */
#episodebar
{
width: 200px;
}
#video_display
{
float: right;
border-left: 3px solid gray;
}
#video_description
{
width: 500px;
margin-left: 10px;
margin-top: 10px;
}
.noclear
{
clear: none;
}
/*Navigation*/
#nav
{
clear: both;
}
#nav a
{
display: block;
width: 100px;
padding: 2px;
margin: 4px 4px 0px 4px;
float: left;
border: 1px solid #3465a4;
border-bottom: none;
background-color: #527cb2;
color: #FFFFFF;
font-size: 65%;
text-decoration: none;
text-align: center;
-moz-border-radius-topleft: 2px;
-webkit-border-top-left-radius: 2px;
-moz-border-radius-topright: 2px;
-webkit-border-top-right-radius: 2px;
}
#nav a:hover
{
border: 1px solid #527cb2;
border-bottom: none;
background-color: #3465a4;
}
#nav a.here
{
color: #3465a4;
background-color: #FFFFFF;
}
/*Subnavigation*/
#subnav
{
clear: both;
border-top: 1px solid #999999;
background-color: white;
height: 26px;
text-align: center;
}
#subnav a
{
display: block;
width: 70px;
padding: 2px;
margin: 4px 4px 0px 4px;
float: left;
border: 1px solid #666666;
background-color: #999999;
color: #ffffff;
font-size: 65%;
text-decoration: none;
text-align: center;
-moz-border-radius: 2px;
-webkit-border-radius: 2px;
}
#subnav a:hover
{
border: 1px solid #cccccc;
background-color: #333333;
}
#subnav a.here
{
color: #3465a4;
background-color: #ffffff;
}
code a
{
font-weight: normal;
}