slitaz-doc rev 1

Add header image, css and template
author Christophe Lincoln <pankso@slitaz.org>
date Thu Mar 13 12:24:20 2008 +0100 (2008-03-13)
parents 5832f9b61264
children 062963eacc8f
files slitaz/images/header.png slitaz/style.css slitaz/template.html
line diff
     1.1 Binary file slitaz/images/header.png has changed
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/slitaz/style.css	Thu Mar 13 12:24:20 2008 +0100
     2.3 @@ -0,0 +1,57 @@
     2.4 +/* CSS style for SliTaz GNU/Linux generic xHTML files. */
     2.5 +body {
     2.6 +    font: 90% sans-serif, vernada, arial;
     2.7 +    margin: 0;
     2.8 +    }
     2.9 +/* Header */
    2.10 +#header{
    2.11 +    background: #f0ba08 url(images/header.png) repeat-x top;
    2.12 +    color: black;
    2.13 +    width: 100%;
    2.14 +    height: 50px ;
    2.15 +    border-top: 1px solid black;
    2.16 +    border-bottom: 1px solid black;
    2.17 +    }
    2.18 +#content {
    2.19 +	margin: 0px 50px 26px 50px;
    2.20 +	}
    2.21 +#footer {
    2.22 +	border-top: 1px solid black;
    2.23 +	}
    2.24 +a {
    2.25 +	text-decoration: underline;
    2.26 +	}
    2.27 +a:hover {
    2.28 +	text-decoration: none;
    2.29 +	}
    2.30 +h1 {
    2.31 +    margin: 10px 0px 0px 6px;
    2.32 +    }
    2.33 +h2 {
    2.34 +    margin: 12px 0;
    2.35 +    }
    2.36 +pre {
    2.37 +    padding: 5px;
    2.38 +    color: black;
    2.39 +    background: #e1e0b0;
    2.40 +    }
    2.41 +pre.script {
    2.42 +    padding: 10px;
    2.43 +    color: black;
    2.44 +    background: #e8e8e8;
    2.45 +    border: 1px inset #333333;
    2.46 +}
    2.47 +li {
    2.48 +    line-height: 1.4em;
    2.49 +    }
    2.50 +code {
    2.51 +    font-size: 100%;
    2.52 +    color: #669900;
    2.53 +    background: transparent;
    2.54 +    }
    2.55 +hr {
    2.56 +	color: white;
    2.57 +    background-color: white;
    2.58 +    height: 1px;
    2.59 +    border: 0;
    2.60 +	}
     3.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     3.2 +++ b/slitaz/template.html	Thu Mar 13 12:24:20 2008 +0100
     3.3 @@ -0,0 +1,55 @@
     3.4 +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
     3.5 +    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
     3.6 +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr">
     3.7 +<head>
     3.8 +	<title>SliTaz Doc - Template</title>
     3.9 +	<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1" />
    3.10 +	<meta name="description" content="SliTaz documentation book" />
    3.11 +	<meta name="expires" content="never" />
    3.12 +	<meta name="modified" content="2008-03-12 16:30:00" />
    3.13 +	<meta name="publisher" content="www.slitaz.org" />
    3.14 +	<meta name="author" content="Christophe Lincoln"/>
    3.15 +	<link rel="stylesheet" type="text/css" href="style.css" />
    3.16 +</head>
    3.17 +<body bgcolor="#ffffff">
    3.18 +<!-- Header -->
    3.19 +<div id="header">
    3.20 +	<a name="top"></a>
    3.21 +	<h1>SliTaz GNU/Linux</h1>
    3.22 +</div>
    3.23 +
    3.24 +<!-- Content -->
    3.25 +<div id="content">
    3.26 +
    3.27 +<h2><font color="#DF8F06">Generic xHTML template</font></h2>
    3.28 +
    3.29 +<!--
    3.30 +
    3.31 +    Here we go...
    3.32 +
    3.33 +    <h3><font color="#6c0023">H3 in color</font></h3>
    3.34 +
    3.35 +-->
    3.36 +
    3.37 +</div>
    3.38 +<!-- End content -->
    3.39 +<hr />
    3.40 +
    3.41 +<!-- Footer -->
    3.42 +<div align="center" id="footer">
    3.43 +<p>
    3.44 +<font size="-1">
    3.45 +    <a href="#top">Haut de la page</a>
    3.46 +</font>
    3.47 +</p>
    3.48 +<p>
    3.49 +<font size="-1">
    3.50 +    Copyright &copy; 2008 <a href="http://www.slitaz.org/">SliTaz</a> -
    3.51 +    <a href="http://www.gnu.org/licenses/gpl.html">GNU General Public License</a><br />
    3.52 +    Code <a href="http://validator.w3.org/">XHTML 1.0 valide</a>.
    3.53 +</font>
    3.54 +</p>
    3.55 +</div>
    3.56 +
    3.57 +</body>
    3.58 +</html>