improved templatewrite code (ignores swap files, svn, ...)
added "details" page added FAQ changed a lot of text
This commit is contained in:
parent
54559af141
commit
2daeb925a1
26 changed files with 868 additions and 334 deletions
108
gfx/main.css
108
gfx/main.css
|
@ -27,7 +27,8 @@ h2 {
|
|||
font-size: 100%;
|
||||
font-weight: normal;
|
||||
text-align: left;
|
||||
font-weight:800;
|
||||
/* RFC: there is a font-weight above - which is valid? */
|
||||
font-weight: 800;
|
||||
}
|
||||
|
||||
div {
|
||||
|
@ -46,21 +47,23 @@ b {
|
|||
font-size: 95%;
|
||||
}
|
||||
|
||||
.container {
|
||||
div.container {
|
||||
background-color: #FFF;
|
||||
margin: 0 auto 0 auto;
|
||||
padding:0;
|
||||
padding: 0;
|
||||
width: 740px;
|
||||
}
|
||||
.container a:link, a:visited {
|
||||
|
||||
div.container a:link, div.container a:visited {
|
||||
color: #366b30;
|
||||
/*text-decoration: none;*/
|
||||
}
|
||||
.container a:hover, a:active {
|
||||
|
||||
div.container a:hover, div.container a:active {
|
||||
color: #ff8a00;
|
||||
}
|
||||
|
||||
.header {
|
||||
div#header {
|
||||
padding: 2em;
|
||||
margin: 0;
|
||||
background-image: url(header.jpg);
|
||||
|
@ -69,78 +72,98 @@ b {
|
|||
height: 78px;
|
||||
}
|
||||
|
||||
.navbar {
|
||||
div#mission {
|
||||
padding: 0.3em 1ex 0.3em 1ex;
|
||||
margin: 5px 5px 9px 5px;
|
||||
border: 1px solid #e0e0e0;
|
||||
}
|
||||
|
||||
div#mission h2 {
|
||||
padding: 0.1em 0 0.1em 0.5em;
|
||||
}
|
||||
|
||||
ul {
|
||||
margin-top: 0;
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
div.navbar {
|
||||
display: block;
|
||||
width: 740px;
|
||||
font-weight: bold;
|
||||
margin: 5px 0 5px 0;
|
||||
padding: 5px 0 5px 0;
|
||||
padding: 10px 0 10px 0;
|
||||
border-top: 1px solid #C4C4C4;
|
||||
border-bottom: 1px solid #C4C4C4;
|
||||
text-align:center;
|
||||
}
|
||||
.navbar a:link, a:visited, a:active {
|
||||
|
||||
div.navbar a:link, .navbar a:visited, .navbar a:active {
|
||||
color: #666666;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.left {
|
||||
div.left {
|
||||
float: left;
|
||||
width: 30%;
|
||||
margin: 0 0 0 0.1em;
|
||||
margin: 0 0 0 5px;
|
||||
padding: 0;
|
||||
text-align: center;
|
||||
}
|
||||
.left h2 {
|
||||
|
||||
div.left h2 {
|
||||
text-align: left;
|
||||
padding: 0 0 0 0.5em;
|
||||
margin-bottom: 0.3em;
|
||||
}
|
||||
.leftcontent {
|
||||
|
||||
div.leftcontent {
|
||||
margin: 0.2em 0.4em 0.3em 0;
|
||||
padding: 0.3em;
|
||||
text-align: left;
|
||||
border: 1px solid #e0e0e0;
|
||||
}
|
||||
|
||||
.leftcontent p {
|
||||
div.leftcontent p {
|
||||
padding: 0 0 0.5em 0.5em;
|
||||
}
|
||||
|
||||
.content {
|
||||
margin: 5px 5px 9px 30.5%;
|
||||
div.content {
|
||||
margin: 5px 5px 9px 31%;
|
||||
}
|
||||
|
||||
div.onecolumn {
|
||||
margin: 5px 5px 9px 5px;
|
||||
}
|
||||
|
||||
div.content, div.onecolumn {
|
||||
padding: 0.3em 1ex 0.3em 1ex;
|
||||
border: 1px solid #e0e0e0;
|
||||
}
|
||||
|
||||
.content h2 {
|
||||
div.content h2, div.onecolumn h2 {
|
||||
/* these are 2 pixels higher then those on the left side */
|
||||
/* RFC: what does that mean? Do we want this difference or not? [l] */
|
||||
padding: 0.1em 0 0.1em 0.5em;
|
||||
margin: 0.1em 0 0.1em 0;
|
||||
}
|
||||
.content p {
|
||||
|
||||
div.content p, div.onecolumn p {
|
||||
padding: 0.1em 0.8em 0.1em 0.8em;
|
||||
}
|
||||
|
||||
div.onecolumn p {
|
||||
margin-top: 10px;
|
||||
margin-bottom: 25px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.date {
|
||||
text-align: right;
|
||||
font-style: italic;
|
||||
font-size: 0.8em;
|
||||
}
|
||||
|
||||
.onecolumn {
|
||||
border: 1px solid #e0e0e0;
|
||||
}
|
||||
.onecolumn p {
|
||||
margin-bottom: 35px;
|
||||
text-align: center;
|
||||
}
|
||||
.onecolumn h2 {
|
||||
margin: 0 0.5em 0.8em 0.5em;
|
||||
padding: 0.2em 0.3em 0.2em 0.3em;
|
||||
}
|
||||
|
||||
.footer {
|
||||
div.footer {
|
||||
margin: 20px 0 5px 0;
|
||||
padding: 5px 0 5px 0;
|
||||
border-top: 1px solid #C4C4C4;
|
||||
|
@ -151,3 +174,24 @@ b {
|
|||
}
|
||||
|
||||
|
||||
/* FAQ headers */
|
||||
div.faq h3 {
|
||||
margin: 0.5em;
|
||||
color: #8bbf75;
|
||||
}
|
||||
|
||||
|
||||
/* table of content for FAQ */
|
||||
ol.toc {
|
||||
padding-left: 2em;
|
||||
}
|
||||
|
||||
ol.toc li {
|
||||
margin-top: 0.5em;
|
||||
margin-bottom: 0.5em;
|
||||
}
|
||||
|
||||
ol.toc a {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue