slitaz-doc rev 5

Book style for SliTaz - System doc
author Christophe Lincoln <pankso@slitaz.org>
date Sun Mar 16 00:39:07 2008 +0100 (2008-03-16)
parents 5025982c0666
children e1a7094c6174
files slitaz/book.css slitaz/images/css/content-tl.png slitaz/images/css/content-tr.png slitaz/images/css/footer-bl.png slitaz/images/css/footer-br.png slitaz/images/css/header.png slitaz/images/header.png slitaz/relnotes.html slitaz/style.css slitaz/template.html
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/slitaz/book.css	Sun Mar 16 00:39:07 2008 +0100
     1.3 @@ -0,0 +1,170 @@
     1.4 +/* 
     1.5 +	CSS style for SliTaz GNU/Linux *book.
     1.6 +	Pankso 2007 - www.slitaz.org
     1.7 +*/
     1.8 +
     1.9 +body {
    1.10 +	font: 13px sans-serif, vernada, arial;
    1.11 +	background: #222222;
    1.12 +	margin: 0;
    1.13 +	padding-bottom: 100%;
    1.14 +}
    1.15 +
    1.16 +#header {
    1.17 +	background: #BFB06B url(images/css/header.png) repeat-x top;
    1.18 +	color: black;
    1.19 +	height: 50px;
    1.20 +	border-top: 1px solid black;
    1.21 +	border-bottom: 1px solid black;
    1.22 +}
    1.23 +#quicknav {
    1.24 +	margin-right: 6px;
    1.25 +	text-align: right;
    1.26 +	font-size: 12px;
    1.27 +	}
    1.28 +#quicknav {
    1.29 +	margin-right: 6px;
    1.30 +}
    1.31 +
    1.32 +#quicknav a {
    1.33 +	background: inherit;
    1.34 +	color: #222222;
    1.35 +}
    1.36 +
    1.37 +#quicknav a:hover {
    1.38 +	background: inherit;
    1.39 +	color: #EDEDED;
    1.40 +}
    1.41 +
    1.42 +/*  content. */
    1.43 +
    1.44 +#content {
    1.45 +	background: white url(images/css/content-tl.png) no-repeat top left;
    1.46 +	color: black;
    1.47 +	padding: 20px;
    1.48 +	margin: 30px 50px 0px 50px;
    1.49 +	width: auto;
    1.50 +	text-align: justify;
    1.51 +}
    1.52 +
    1.53 +#content li {
    1.54 +	line-height: 1.5em;
    1.55 +	text-align: left;
    1.56 +}
    1.57 +
    1.58 +/*  Footer. */
    1.59 +
    1.60 +#footer {
    1.61 +	font-size: 11px;
    1.62 +	font-weight: bold;
    1.63 +	background: #eaeaea url(images/css/footer-bl.png) no-repeat bottom left;
    1.64 +	color: black;
    1.65 +	height: 20px;
    1.66 +	padding: 6px 0px 0px 10px;
    1.67 +	margin: 0px 50px 0px 50px;
    1.68 +	width: auto;
    1.69 +	text-align: center ;
    1.70 +}
    1.71 +
    1.72 +#footer a {
    1.73 +	text-decoration: none;
    1.74 +	background: #eaeaea;
    1.75 +	color: #3E1220;
    1.76 +}
    1.77 +
    1.78 +#footer a:hover {
    1.79 +	background: #eaeaea;
    1.80 +	color: #DF8F06;
    1.81 +}
    1.82 +
    1.83 +/* Legal informations */
    1.84 +
    1.85 +#copy {
    1.86 +	font-size: 11px ;
    1.87 +	text-align: center ;
    1.88 +	background: transparent;
    1.89 +	color: #a8a8a8;
    1.90 +	padding-top: 20px;
    1.91 +}
    1.92 +
    1.93 +#copy a {
    1.94 +	background: inherit;
    1.95 +	color: #a8a8a8;
    1.96 +}
    1.97 +
    1.98 +#copy a:hover {
    1.99 +	background: inherit;
   1.100 +	color: #EDEDED;
   1.101 +}
   1.102 +
   1.103 +/* Div for round corners. */
   1.104 +
   1.105 +.content-right, .footer-right {
   1.106 +	width: 16px;
   1.107 +	color: white;
   1.108 +	background-color: #333333;
   1.109 +}
   1.110 +.content-right {
   1.111 +	background: url(images/css/content-tr.png) no-repeat top right;
   1.112 +	height: 16px;
   1.113 +	right: 50px;
   1.114 +	top: 82px;
   1.115 +	position: absolute;
   1.116 +}
   1.117 +
   1.118 +.footer-right {
   1.119 +	background: url(images/css/footer-br.png) no-repeat bottom right;
   1.120 +	height: 20px;
   1.121 +	float: right;
   1.122 +}
   1.123 +
   1.124 +/* General HTML entities for  content. */
   1.125 +
   1.126 +h1 {
   1.127 +	margin: 0px 0px 0px 16px;
   1.128 +}
   1.129 +
   1.130 +h2 {
   1.131 +	margin: 12px 0;
   1.132 +	color: #484B7C;
   1.133 +	background: white;
   1.134 +}
   1.135 +
   1.136 +h3 {
   1.137 +	font-weight: bold;
   1.138 +	color: #6c0023;
   1.139 +	background: white;
   1.140 +}
   1.141 +
   1.142 +a {
   1.143 +	text-decoration: underline;
   1.144 +}
   1.145 +a:hover {
   1.146 +	text-decoration: none;
   1.147 +}
   1.148 +
   1.149 +pre {
   1.150 +	padding: 5px;
   1.151 +	color: black;
   1.152 +	background: #e1e0b0;
   1.153 +}
   1.154 +pre.script {
   1.155 +	padding: 10px;
   1.156 +	color: black;
   1.157 +	background: #e8e8e8;
   1.158 +	border: 1px inset #333333;
   1.159 +}
   1.160 +
   1.161 +code {
   1.162 +	font-size: 12px;
   1.163 +	color: #669900;
   1.164 +	background: transparent;
   1.165 +}
   1.166 +
   1.167 +li {
   1.168 +	line-height: 1.4em;
   1.169 +}
   1.170 +
   1.171 +hr {
   1.172 +	border: 0pt none;
   1.173 +}
     2.1 Binary file slitaz/images/css/content-tl.png has changed
     3.1 Binary file slitaz/images/css/content-tr.png has changed
     4.1 Binary file slitaz/images/css/footer-bl.png has changed
     5.1 Binary file slitaz/images/css/footer-br.png has changed
     6.1 Binary file slitaz/images/css/header.png has changed
     7.1 Binary file slitaz/images/header.png has changed
     8.1 --- a/slitaz/relnotes.html	Thu Mar 13 12:28:13 2008 +0100
     8.2 +++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
     8.3 @@ -1,58 +0,0 @@
     8.4 -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
     8.5 -    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
     8.6 -<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr">
     8.7 -<head>
     8.8 -	<title>SliTaz GNU/Linux X.X - Release Notes</title>
     8.9 -	<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1" />
    8.10 -	<meta name="description" content="SliTaz documentation book" />
    8.11 -	<meta name="expires" content="never" />
    8.12 -	<meta name="modified" content="2008-03-12 16:30:00" />
    8.13 -	<meta name="publisher" content="www.slitaz.org" />
    8.14 -	<meta name="author" content="Christophe Lincoln"/>
    8.15 -	<link rel="stylesheet" type="text/css" href="style.css" />
    8.16 -</head>
    8.17 -<body bgcolor="#ffffff">
    8.18 -<!-- Header -->
    8.19 -<div id="header">
    8.20 -	<a name="top"></a>
    8.21 -	<h1>SliTaz GNU/Linux - Release Notes</h1>
    8.22 -</div>
    8.23 -
    8.24 -<!-- Content -->
    8.25 -<div id="content">
    8.26 -
    8.27 -<h2><font color="#DF8F06">Notes de publication</font></h2>
    8.28 -
    8.29 -
    8.30 -<p>
    8.31 -[<code>fr</code>] Vous utilisez une version en cuisson, il n'y a pas de notes
    8.32 -de publication.
    8.33 -</p>
    8.34 -
    8.35 -<p>
    8.36 -[<code>en</code>] You are using a Cooking version, no releases notes yet.
    8.37 -</p>
    8.38 -
    8.39 -</div>
    8.40 -<!-- End content -->
    8.41 -<hr />
    8.42 -
    8.43 -<!-- Footer -->
    8.44 -<div align="center" id="footer">
    8.45 -<p>
    8.46 -<font size="-1">
    8.47 -	<a href="index.html">Index</a> |
    8.48 -    <a href="#top">Haut de la page</a>
    8.49 -</font>
    8.50 -</p>
    8.51 -<p>
    8.52 -<font size="-1">
    8.53 -    Copyright &copy; 2008 <a href="http://www.slitaz.org/">SliTaz</a> -
    8.54 -    <a href="http://www.gnu.org/licenses/gpl.html">GNU General Public License</a><br />
    8.55 -    Code <a href="http://validator.w3.org/">XHTML 1.0 valide</a>.
    8.56 -</font>
    8.57 -</p>
    8.58 -</div>
    8.59 -
    8.60 -</body>
    8.61 -</html>
     9.1 --- a/slitaz/style.css	Thu Mar 13 12:28:13 2008 +0100
     9.2 +++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
     9.3 @@ -1,57 +0,0 @@
     9.4 -/* CSS style for SliTaz GNU/Linux generic xHTML files. */
     9.5 -body {
     9.6 -    font: 90% sans-serif, vernada, arial;
     9.7 -    margin: 0;
     9.8 -    }
     9.9 -/* Header */
    9.10 -#header{
    9.11 -    background: #f0ba08 url(images/header.png) repeat-x top;
    9.12 -    color: black;
    9.13 -    width: 100%;
    9.14 -    height: 50px ;
    9.15 -    border-top: 1px solid black;
    9.16 -    border-bottom: 1px solid black;
    9.17 -    }
    9.18 -#content {
    9.19 -	margin: 0px 50px 26px 50px;
    9.20 -	}
    9.21 -#footer {
    9.22 -	border-top: 1px solid black;
    9.23 -	}
    9.24 -a {
    9.25 -	text-decoration: underline;
    9.26 -	}
    9.27 -a:hover {
    9.28 -	text-decoration: none;
    9.29 -	}
    9.30 -h1 {
    9.31 -    margin: 10px 0px 0px 6px;
    9.32 -    }
    9.33 -h2 {
    9.34 -    margin: 12px 0;
    9.35 -    }
    9.36 -pre {
    9.37 -    padding: 5px;
    9.38 -    color: black;
    9.39 -    background: #e1e0b0;
    9.40 -    }
    9.41 -pre.script {
    9.42 -    padding: 10px;
    9.43 -    color: black;
    9.44 -    background: #e8e8e8;
    9.45 -    border: 1px inset #333333;
    9.46 -}
    9.47 -li {
    9.48 -    line-height: 1.4em;
    9.49 -    }
    9.50 -code {
    9.51 -    font-size: 100%;
    9.52 -    color: #669900;
    9.53 -    background: transparent;
    9.54 -    }
    9.55 -hr {
    9.56 -	color: white;
    9.57 -    background-color: white;
    9.58 -    height: 1px;
    9.59 -    border: 0;
    9.60 -	}
    10.1 --- a/slitaz/template.html	Thu Mar 13 12:28:13 2008 +0100
    10.2 +++ b/slitaz/template.html	Sun Mar 16 00:39:07 2008 +0100
    10.3 @@ -1,54 +1,56 @@
    10.4  <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    10.5 -    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    10.6 +	"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    10.7  <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr">
    10.8  <head>
    10.9 -	<title>SliTaz Doc - Template</title>
   10.10 +	<title>SliTaz - System doc</title>
   10.11  	<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1" />
   10.12 -	<meta name="description" content="SliTaz documentation book" />
   10.13 +	<meta name="description" content="slitaz doc system releases notes information cooking" />
   10.14  	<meta name="expires" content="never" />
   10.15 -	<meta name="modified" content="2008-03-12 16:30:00" />
   10.16 +	<meta name="modified" content="2008-03-14 11:30:00" />
   10.17  	<meta name="publisher" content="www.slitaz.org" />
   10.18  	<meta name="author" content="Christophe Lincoln"/>
   10.19 -	<link rel="stylesheet" type="text/css" href="style.css" />
   10.20 +	<link rel="shortcut icon" href="favicon.ico" />
   10.21 +	<link rel="stylesheet" type="text/css" href="book.css" />
   10.22  </head>
   10.23  <body bgcolor="#ffffff">
   10.24 -<!-- Header -->
   10.25 +
   10.26 +<!-- Header and quick navigation -->
   10.27  <div id="header">
   10.28 -	<a name="top"></a>
   10.29 -	<h1>SliTaz GNU/Linux</h1>
   10.30 +<div align="right" id="quicknav">
   10.31 +    <a name="top"></a>
   10.32 +	<a href="index.html">Index of /usr/share/doc/slitaz</a> |
   10.33 +	<a href="http://www.slitaz.org/doc/">www.slitaz.org/doc/</a>
   10.34 +</div>
   10.35 +<h1><font color="#3E1220">SliTaz - System doc</font></h1>
   10.36  </div>
   10.37  
   10.38 -<!-- Content -->
   10.39 +<!-- Content. -->
   10.40  <div id="content">
   10.41 +<div class="content-right"></div>
   10.42  
   10.43 -<h2><font color="#DF8F06">Generic xHTML template</font></h2>
   10.44 +<h2><font color="#DF8F06">Template</font></h2>
   10.45  
   10.46 -<!--
   10.47 +<p>
   10.48 +CONTENT
   10.49 +</p>
   10.50  
   10.51 -    Here we go...
   10.52  
   10.53 -    <h3><font color="#6c0023">H3 in color</font></h3>
   10.54 +<!-- End of content -->
   10.55 +</div>
   10.56  
   10.57 --->
   10.58 +<!-- Footer. -->
   10.59 +<div id="footer">
   10.60 +	<div class="footer-right"></div>
   10.61 +	<a href="#top">Haut de la page</a> | 
   10.62 +	<a href="index.html">Index of /usr/share/doc/slitaz</a>
   10.63 +</div>
   10.64  
   10.65 -</div>
   10.66 -<!-- End content -->
   10.67 -<hr />
   10.68 -
   10.69 -<!-- Footer -->
   10.70 -<div align="center" id="footer">
   10.71 -<p>
   10.72 -<font size="-1">
   10.73 -    <a href="#top">Haut de la page</a>
   10.74 -</font>
   10.75 -</p>
   10.76 -<p>
   10.77 -<font size="-1">
   10.78 -    Copyright &copy; 2008 <a href="http://www.slitaz.org/">SliTaz</a> -
   10.79 -    <a href="http://www.gnu.org/licenses/gpl.html">GNU General Public License</a><br />
   10.80 -    Code <a href="http://validator.w3.org/">XHTML 1.0 valide</a>.
   10.81 -</font>
   10.82 -</p>
   10.83 +<div id="copy">
   10.84 +	Copyright &copy; 2008 <a href="http://www.slitaz.org/">SliTaz</a> -
   10.85 +	<a href="http://www.gnu.org/licenses/gpl.html">GNU General Public License</a>;<br />
   10.86 +	Documentation publiées sous
   10.87 +	<a href="http://www.gnu.org/copyleft/fdl.html">GNU Free Documentation License</a>
   10.88 +	et codée en <a href="http://validator.w3.org/">xHTML 1.0 valide</a>.
   10.89  </div>
   10.90  
   10.91  </body>