9000a4b179
* Fixed wrong link to filetypes workshop. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@27932 a95241bf-73f2-0310-859d-f6bbb57e9c96
164 lines
2.2 KiB
CSS
164 lines
2.2 KiB
CSS
/*
|
|
* Copyright 2008, Haiku. All rights reserved.
|
|
* Distributed under the terms of the MIT License.
|
|
*
|
|
* Authors:
|
|
* François Revol <revol@free.fr>
|
|
* Stephan Aßmus <superstippi@gmx.de>
|
|
*/
|
|
|
|
html {
|
|
margin: 0px;
|
|
padding: 0px;
|
|
}
|
|
body {
|
|
color: #333333;
|
|
margin: 0px;
|
|
padding: 0px;
|
|
}
|
|
|
|
/* link colors and text decoration */
|
|
|
|
a:link {
|
|
font-weight: bold;
|
|
text-decoration: none;
|
|
color: #dc3c01;
|
|
}
|
|
a:visited {
|
|
font-weight: bold;
|
|
text-decoration: none;
|
|
color: #892601;
|
|
}
|
|
a:hover, a:active {
|
|
text-decoration: underline;
|
|
color: #ff4500;
|
|
}
|
|
|
|
/* Some headers act as anchors, don't give them a hover effect */
|
|
h2 a:hover, a:active {
|
|
text-decoration: none;
|
|
color: #0c3762;
|
|
}
|
|
h3 a:hover, a:active {
|
|
text-decoration: none;
|
|
color: #222;
|
|
}
|
|
h4 a:hover, a:active {
|
|
text-decoration: none;
|
|
color: #000;
|
|
}
|
|
|
|
/* basic text elements */
|
|
|
|
div.content {
|
|
margin-top: 50px;
|
|
margin-left: 40px;
|
|
margin-right: 40px;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 1.3em;
|
|
font-weight: normal;
|
|
color: #0c3762;
|
|
border-bottom: dotted thin #e0e0e0;
|
|
}
|
|
|
|
h2 {
|
|
font-size: 1.2em;
|
|
font-weight: normal;
|
|
color: #0c3762;
|
|
border-bottom: dotted thin #e0e0e0;
|
|
}
|
|
|
|
h3 {
|
|
font-size: 1.1em;
|
|
font-weight: normal;
|
|
color: #222;
|
|
}
|
|
|
|
p {
|
|
text-align: justify;
|
|
line-height: 1.3;
|
|
}
|
|
|
|
/* Add a space before the next header */
|
|
* + h2 {
|
|
margin-top: 50px;
|
|
}
|
|
|
|
* + h3 {
|
|
margin-top: 30px;
|
|
}
|
|
|
|
li {
|
|
line-height: 1.3;
|
|
}
|
|
|
|
/*
|
|
#logo {
|
|
background-image: url(bottom.png);
|
|
background-repeat: no-repeat;
|
|
background-position: center;
|
|
height: 200px;
|
|
width: 100%;
|
|
position: fixed;
|
|
top: 0px;
|
|
z-index: 1;
|
|
}
|
|
*/
|
|
|
|
|
|
div.logo {
|
|
position:relative;
|
|
left: 0px;
|
|
top: 0px;
|
|
background: #efefef;
|
|
}
|
|
|
|
div.logo img {
|
|
margin-left: 20px;
|
|
}
|
|
|
|
div.title {
|
|
position: absolute;
|
|
bottom: 11px;
|
|
right: 0px;
|
|
text-align: right;
|
|
margin-right: 40px;
|
|
font-size: 1.2em;
|
|
}
|
|
|
|
div.topnav {
|
|
background: #e0e0e0;
|
|
}
|
|
|
|
div.topnav p {
|
|
margin-left: 40px;
|
|
margin-top: 0px;
|
|
margin-right: 40px;
|
|
margin-bottom: 0px;
|
|
text-align: right;
|
|
font-size: 0.8em;
|
|
}
|
|
|
|
div.bottomnav {
|
|
/*
|
|
position: fixed;
|
|
bottom: 0px;
|
|
width: 100%;
|
|
z-index: 1;
|
|
*/
|
|
|
|
background: #efefef;
|
|
}
|
|
|
|
div.bottomnav p {
|
|
margin-left: 40px;
|
|
margin-top: 0px;
|
|
margin-right: 40px;
|
|
margin-bottom: 0px;
|
|
text-align: right;
|
|
font-size: 0.9em;
|
|
}
|
|
|