cookutils rev 116

web: a bit more CSS and link to slitaz website as well as Cooker documentation
author Christophe Lincoln <pankso@slitaz.org>
date Mon May 09 12:08:20 2011 +0200 (2011-05-09)
parents 04281d860957
children 52f9d94faf88
files web/cooker.cgi web/style.css
line diff
     1.1 --- a/web/cooker.cgi	Mon May 09 10:42:51 2011 +0200
     1.2 +++ b/web/cooker.cgi	Mon May 09 12:08:20 2011 +0200
     1.3 @@ -257,7 +257,10 @@
     1.4  </div>
     1.5  
     1.6  <div id="footer">
     1.7 -	<a href="cooker.cgi">SliTaz Cooker</a>
     1.8 +	<a href="http://www.slitaz.org/">SliTaz Website</a>
     1.9 +	<a href="cooker.cgi">Cooker</a>
    1.10 +	<a href="http://hg.slitaz.org/cookutils/raw-file/tip/doc/cookutils.en.html">
    1.11 +		Documentation</a>
    1.12  </div>
    1.13  
    1.14  </body>
     2.1 --- a/web/style.css	Mon May 09 10:42:51 2011 +0200
     2.2 +++ b/web/style.css	Mon May 09 12:08:20 2011 +0200
     2.3 @@ -13,24 +13,38 @@
     2.4  	font-size: 96%;
     2.5  }
     2.6  
     2.7 +/* Header */
     2.8 +
     2.9  #header {
    2.10  	background: #351a0a;
    2.11  	height: 40px;
    2.12  	border-bottom: 8px solid #d66018;
    2.13  }
    2.14  
    2.15 +#header h1 {
    2.16 +	margin: 0;
    2.17 +	/* padding: 8px 0 0 42px; */
    2.18 +	width: 250px;
    2.19 +}
    2.20 +
    2.21 +#header h1 a { 
    2.22 +	color: white; 
    2.23 +	text-decoration: none;
    2.24 +	font-size: 20px;
    2.25 +	font-style: italic;
    2.26 +}
    2.27 +
    2.28 +#header h1 a:hover { 
    2.29 +	color: #d66018;
    2.30 +}
    2.31 +
    2.32 +/* Content */
    2.33 +
    2.34  #content {
    2.35  	margin: 40px 80px;
    2.36  	text-align: justify;
    2.37  }
    2.38  
    2.39 -#footer {
    2.40 -	text-align: center;
    2.41 -	padding: 20px;
    2.42 -	border-top: 1px solid #ddd;
    2.43 -	font-size: 90%;
    2.44 -}
    2.45 -
    2.46  .span-ok { color: green; }
    2.47  .span-error { color: red; }
    2.48  .span-sky { color: blue; }
    2.49 @@ -73,3 +87,14 @@
    2.50  	-webkit-border-radius: 4px; */
    2.51  	border-radius: 4px;
    2.52  }
    2.53 +
    2.54 +/* Footer */
    2.55 +
    2.56 +#footer {
    2.57 +	text-align: center;
    2.58 +	padding: 20px;
    2.59 +	border-top: 1px solid #ddd;
    2.60 +	font-size: 90%;
    2.61 +}
    2.62 +
    2.63 +#footer a { padding: 0 2px; }