wok-current rev 24
Add : lighttpd Web server with stuff
author | Christophe Lincoln <pankso@slitaz.org> |
---|---|
date | Tue Dec 18 13:51:14 2007 +0100 (2007-12-18) |
parents | 8e5c96401d01 |
children | 0a7773e78e1d |
files | libxml2-dev/receipt libxml2/receipt lighttpd-modules/receipt lighttpd/receipt lighttpd/stuff/etc/init.d/lighttpd lighttpd/stuff/etc/lighttpd/lighttpd.conf lighttpd/stuff/etc/lighttpd/vhosts.conf lighttpd/stuff/var/www/images/header.png lighttpd/stuff/var/www/images/lighttpd-80x27.png lighttpd/stuff/var/www/images/slitaz-80x15.png lighttpd/stuff/var/www/index.html lighttpd/stuff/var/www/style.css |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/libxml2-dev/receipt Tue Dec 18 13:51:14 2007 +0100 1.3 @@ -0,0 +1,20 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="libxml2-dev" 1.7 +VERSION="2.6.30" 1.8 +CATEGORY="extra" 1.9 +SHORT_DESC="XML C parser and toolkit devel files." 1.10 +MAINTAINER="pankso@slitaz.org" 1.11 +WANTED="libxml2" 1.12 +WEB_SITE="http://xmlsoft.org/" 1.13 + 1.14 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.15 +genpkg_rules() 1.16 +{ 1.17 + mkdir -p $fs/usr/lib $fs/usr/share 1.18 + cp -a $_pkg/usr/lib/*.*a $fs/usr/lib 1.19 + cp -a $_pkg/usr/lib/*.sh $fs/usr/lib 1.20 + cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib 1.21 + cp -a $_pkg/usr/include $fs/usr 1.22 + cp -a $_pkg/usr/share/aclocal $fs/usr/share 1.23 +}
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/libxml2/receipt Tue Dec 18 13:51:14 2007 +0100 2.3 @@ -0,0 +1,35 @@ 2.4 +# SliTaz package receipt. 2.5 + 2.6 +PACKAGE="libxml2" 2.7 +VERSION="2.6.30" 2.8 +CATEGORY="extra" 2.9 +SHORT_DESC="Libxml2 is the XML C parser and toolkit." 2.10 +MAINTAINER="pankso@slitaz.org" 2.11 +TARBALL="$PACKAGE-$VERSION.tar.gz" 2.12 +WEB_SITE="http://xmlsoft.org/" 2.13 +WGET_URL="ftp://xmlsoft.org/libxml2/$TARBALL" 2.14 + 2.15 +# Rules to configure and make the package. 2.16 +# 2.17 +# Note: libxml2 can be build using option --with-minimum 2.18 +# 2.19 +compile_rules() 2.20 +{ 2.21 + cd $src 2.22 + ./configure \ 2.23 + --prefix=/usr --infodir=/usr/share/info \ 2.24 + --mandir=/usr/share/man --with-html-dir=/usr/share/doc 2.25 + $CONFIGURE_ARGS 2.26 + make 2.27 + make DESTDIR=$PWD/_pkg install 2.28 +} 2.29 + 2.30 +# Rules to gen a SliTaz package suitable for Tazpkg. 2.31 +genpkg_rules() 2.32 +{ 2.33 + mkdir -p $fs/usr/lib 2.34 + cp -a $_pkg/usr/lib/*.so* $fs/usr/lib 2.35 + cp -a $_pkg/usr/bin $fs/usr 2.36 + strip -s $fs/usr/lib/* 2.37 + strip -s $fs/usr/bin/* 2>/dev/null 2.38 +}
3.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 3.2 +++ b/lighttpd-modules/receipt Tue Dec 18 13:51:14 2007 +0100 3.3 @@ -0,0 +1,38 @@ 3.4 +# SliTaz package receipt. 3.5 + 3.6 +PACKAGE="lighttpd-modules" 3.7 +VERSION="1.4.18" 3.8 +CATEGORY="extra" 3.9 +SHORT_DESC="Complementary modules for LightTPD Web server." 3.10 +MAINTAINER="pankso@slitaz.org" 3.11 +DEPENDS="lighttpd" 3.12 +WANTED="lighttpd" 3.13 +WEB_SITE="http://www.lighttpd.net/" 3.14 +BASE_MODULES=" 3.15 +access 3.16 +accesslog 3.17 +alias 3.18 +cgi 3.19 +fastcgi 3.20 +compress 3.21 +dirlisting 3.22 +indexfile 3.23 +staticfile 3.24 +rewrite 3.25 +status 3.26 +userdir" 3.27 + 3.28 +# Rules to gen a SliTaz package suitable for Tazpkg. 3.29 +# On SliTaz Lighttpd runs as user/group : www/www or 80/80. 3.30 +genpkg_rules() 3.31 +{ 3.32 + # Modules. 3.33 + mkdir -p $fs/usr/ 3.34 + cp -a $_pkg/usr/lib $fs/usr 3.35 + for module in $BASE_MODULES 3.36 + do 3.37 + rm -f $fs/usr/lib/lighttpd/mod_${module}.so 3.38 + done 3.39 + rm -f $fs/usr/lib/lighttpd/*.la 3.40 + strip -s $fs/usr/lib/lighttpd/* 3.41 +}
4.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 4.2 +++ b/lighttpd/receipt Tue Dec 18 13:51:14 2007 +0100 4.3 @@ -0,0 +1,80 @@ 4.4 +# SliTaz package receipt. 4.5 + 4.6 +PACKAGE="lighttpd" 4.7 +VERSION="1.4.18" 4.8 +CATEGORY="base-apps" 4.9 +SHORT_DESC="Fast and light HTTP Web server." 4.10 +MAINTAINER="pankso@slitaz.org" 4.11 +DEPENDS="php" 4.12 +TARBALL="$PACKAGE-$VERSION.tar.gz" 4.13 +WEB_SITE="http://www.lighttpd.net/" 4.14 +WGET_URL="http://www.lighttpd.net/download/$TARBALL" 4.15 +BASE_MODULES=" 4.16 +access 4.17 +accesslog 4.18 +alias 4.19 +cgi 4.20 +fastcgi 4.21 +compress 4.22 +dirlisting 4.23 +indexfile 4.24 +staticfile 4.25 +rewrite 4.26 +status 4.27 +userdir" 4.28 + 4.29 +# Rules to configure and make the package. 4.30 +compile_rules() 4.31 +{ 4.32 + cd $src 4.33 + ./configure -enable-shared --disable-ipv6 --prefix=/usr \ 4.34 + --libdir=/usr/lib/lighttpd --mandir=/usr/share/man \ 4.35 + $CONFIGURE_ARGS 4.36 + make 4.37 + make DESTDIR=$PWD/_pkg install 4.38 +} 4.39 + 4.40 +# Rules to gen a SliTaz package suitable for Tazpkg. 4.41 +# On SliTaz Lighttpd runs as user/group : www/www or 80/80. 4.42 +genpkg_rules() 4.43 +{ 4.44 + mkdir -p $fs/usr 4.45 + cp -a $_pkg/usr/bin $fs/usr 4.46 + cp -a $_pkg/usr/sbin $fs/usr 4.47 + 4.48 + # Modules. 4.49 + mkdir -p $fs/usr/lib/lighttpd 4.50 + for module in $BASE_MODULES 4.51 + do 4.52 + cp $_pkg/usr/lib/lighttpd/mod_${module}.so $fs/usr/lib/lighttpd 4.53 + echo -n "Copying : mod_${module}.so" && status 4.54 + done 4.55 + strip -s $fs/usr/bin/* 4.56 + strip -s $fs/usr/sbin/* 4.57 + strip -s $fs/usr/lib/lighttpd/* 4.58 + 4.59 + # Server root and config file. 4.60 + cp -a stuff/var $fs 4.61 + cp -a stuff/etc $fs 4.62 + 4.63 + # Logs directory. 4.64 + mkdir -p $fs/var/log/lighttpd 4.65 + chown 80.80 $fs/var/log/lighttpd 4.66 +} 4.67 + 4.68 +# Pre and post install commands for Tazpkg. 4.69 +# We stop the server by default in case of upgarde. 4.70 +pre_install() 4.71 +{ 4.72 + echo "Processing pre-install commands..." 4.73 + /etc/init.d/$PACKAGE stop 4.74 +} 4.75 +post_install() 4.76 +{ 4.77 + local root 4.78 + root=$1 4.79 + echo "Processing post-install commands..." 4.80 + # Just in case. 4.81 + chown www.www $root/var/log/$PACKAGE 4.82 + /etc/init.d/$PACKAGE start 4.83 +}
5.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 5.2 +++ b/lighttpd/stuff/etc/init.d/lighttpd Tue Dec 18 13:51:14 2007 +0100 5.3 @@ -0,0 +1,55 @@ 5.4 +#!/bin/sh 5.5 +# /etc/init.d/lighttpd: Start, stop and restart web server on SliTaz, 5.6 +# at boot time or with the command line. Daemons options are configured 5.7 +# with /etc/daemons.conf 5.8 +# 5.9 +. /etc/init.d/rc.functions 5.10 +. /etc/daemons.conf 5.11 + 5.12 +NAME=LightTPD 5.13 +DESC="web server" 5.14 +DAEMON=/usr/sbin/lighttpd 5.15 +OPTIONS=$LIGHTTPD_OPTIONS 5.16 +PIDFILE=/var/run/lighttpd.pid 5.17 + 5.18 +case "$1" in 5.19 + start) 5.20 + if [ -f $PIDFILE ] ; then 5.21 + echo "$NAME already running." 5.22 + exit 1 5.23 + fi 5.24 + echo -n "Starting $DESC: $NAME... " 5.25 + $DAEMON $OPTIONS 5.26 + status 5.27 + ;; 5.28 + stop) 5.29 + if [ ! -f $PIDFILE ] ; then 5.30 + echo "$NAME is not running." 5.31 + exit 1 5.32 + fi 5.33 + echo -n "Stopping $DESC: $NAME... " 5.34 + kill `cat $PIDFILE` 5.35 + rm $PIDFILE 5.36 + status 5.37 + ;; 5.38 + restart) 5.39 + if [ ! -f $PIDFILE ] ; then 5.40 + echo "$NAME is not running." 5.41 + exit 1 5.42 + fi 5.43 + echo -n "Restarting $DESC: $NAME... " 5.44 + kill `cat $PIDFILE` 5.45 + rm $PIDFILE 5.46 + sleep 2 5.47 + $DAEMON $OPTIONS 5.48 + status 5.49 + ;; 5.50 + *) 5.51 + echo "" 5.52 + echo -e "\033[1mUsage:\033[0m /etc/init.d/`basename $0` [start|stop|restart]" 5.53 + echo "" 5.54 + exit 1 5.55 + ;; 5.56 +esac 5.57 + 5.58 +exit 0
6.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 6.2 +++ b/lighttpd/stuff/etc/lighttpd/lighttpd.conf Tue Dec 18 13:51:14 2007 +0100 6.3 @@ -0,0 +1,157 @@ 6.4 +# /etc/lighttpd/lighttpd.conf: SliTaz LightTPD 6.5 +# Web server configuration file. 6.6 +# Configuration du serveur web. 6.7 +# 6.8 +# Documentation : /usr/share/doc/slitaz/handbook/web-server.html 6.9 +# http://trac.lighttpd.net/trac/wiki#Documentation 6.10 +# 6.11 +# 6.12 + 6.13 +# Root documents. 6.14 +# 6.15 +server.document-root = "/var/www/" 6.16 + 6.17 +# Port, default for HTTP traffic is 80. 6.18 +# 6.19 +server.port = 80 6.20 + 6.21 +# Server, user and group name. 6.22 +# 6.23 +server.username = "www" 6.24 +server.groupname = "www" 6.25 + 6.26 +# Server header. 6.27 +# Be nice and keep it at lighttpd and SliTaz GNU/Linux. 6.28 +# 6.29 +server.tag = "lighttpd/1.4.18 (SliTaz GNU/Linux)" 6.30 + 6.31 +# Directory listings. 6.32 +# 6.33 +dir-listing.activate = "enable" 6.34 +dir-listing.encoding = "iso8859-1" 6.35 + 6.36 +# File to open by default. 6.37 +# 6.38 +index-file.names = ( "index.html","index.php", "index.cgi", "index.sh" ) 6.39 + 6.40 +# Log messages. 6.41 +# 6.42 +accesslog.filename = "/var/log/lighttpd/access.log" 6.43 +server.errorlog = "/var/log/lighttpd/error.log" 6.44 + 6.45 +# Server pid file 6.46 +server.pid-file = "/var/run/lighttpd.pid" 6.47 + 6.48 +# MIME type. 6.49 +# 6.50 +mimetype.assign = ( 6.51 + ".html" => "text/html", 6.52 + ".txt" => "text/plain", 6.53 + ".js" => "text/javascript", 6.54 + ".css" => "text/css", 6.55 + ".xml" => "text/xml", 6.56 + ".diff" => "text/plain", 6.57 + ".patch" => "text/plain", 6.58 + ".list" => "text/plain", 6.59 + ".log" => "text/plain", 6.60 + ".conf" => "text/plain", 6.61 + ".pdf" => "application/pdf", 6.62 + ".ps" => "application/postscript", 6.63 + ".jpg" => "image/jpeg", 6.64 + ".jpeg" => "image/jpeg", 6.65 + ".png" => "image/png", 6.66 + ".gif" => "image/gif", 6.67 + ".xbm" => "image/x-xbitmap", 6.68 + ".xpm" => "image/x-xpixmap", 6.69 + ".gz" => "application/x-gzip", 6.70 + ".tar.gz" => "application/x-tgz", 6.71 + ".torrent" => "application/x-bittorrent", 6.72 + ".ogg" => "application/ogg", 6.73 + ".cooklist" => "text/plain", 6.74 + ".tazpkg" => "application/x-tazpkg", 6.75 + "README" => "text/plain", 6.76 + "receipt" => "text/plain", 6.77 +) 6.78 + 6.79 +# Deny access the file-extensions. 6.80 +# 6.81 +url.access-deny = ( "~", ".inc" ) 6.82 + 6.83 +# Modules to load. 6.84 +# See /usr/lib/lighttpd for all available modules. 6.85 +# 6.86 +server.modules = ( 6.87 + "mod_access", 6.88 + "mod_accesslog", 6.89 + "mod_alias", 6.90 + "mod_cgi", 6.91 + "mod_compress", 6.92 + "mod_rewrite", 6.93 + "mod_status", 6.94 + "mod_userdir", 6.95 + "mod_fastcgi", 6.96 +) 6.97 + 6.98 +# User directory module. 6.99 +# 6.100 +userdir.path = "Public" 6.101 +userdir.exclude-user = ("root") 6.102 + 6.103 +# Status module. 6.104 +# 6.105 +status.status-url = "/server-status" 6.106 + 6.107 +# Compress module 6.108 +# 6.109 +#compress.cache-dir = "/var/cache/lighttpd/compress/" 6.110 +#compress.filetype = ("text/plain", "text/html") 6.111 + 6.112 +## CGI module. You can install Perl and assign .pl and .cgi script 6.113 +# to /usr/bin/perl. 6.114 +# 6.115 +$HTTP["url"] =~ "/cgi-bin/" { 6.116 + cgi.assign = ( 6.117 + ".sh" => "/bin/sh" 6.118 + ) 6.119 +} 6.120 + 6.121 +# Fast CGI modules for PHP. 6.122 +# 6.123 +fastcgi.server = ( ".php" => (( 6.124 + "bin-path" => "/usr/bin/php-cgi", 6.125 + "socket" => "/tmp/php.socket" 6.126 + ))) 6.127 + 6.128 +# Alias urls for localhost (doc, examples and PHP info). 6.129 +# 6.130 +$HTTP["remoteip"] =~ "127.0.0.1" { 6.131 + alias.url += ( 6.132 + "/doc/" => "/usr/share/doc/", 6.133 + "/examples/" => "/usr/share/examples/", 6.134 + "/phpinfo/" => "/usr/share/phpinfo/" 6.135 + ) 6.136 +} 6.137 + 6.138 +## Virtual hosts. 6.139 +# 6.140 +# If you want name-based virtual hosting load mod_simple_vhost. 6.141 +# 6.142 +# You can directly put vhost in this file or use a sepate one for all 6.143 +# virtual hosting. 6.144 +# 6.145 +include "vhosts.conf" 6.146 + 6.147 +# Example.org 6.148 +# 6.149 +#$HTTP["host"] =~ "(^|\.)example\.org$" { 6.150 + #server.document-root = "/var/www/vhost/exemple.com/html" 6.151 + #server.errorlog = "/var/log/lighttpd/example.org-error.log" 6.152 + #accesslog.filename = "/var/log/lighttpd/example.org-access.log" 6.153 +#} 6.154 + 6.155 +# Deny access for all image stealers (anti-hotlinking for images) 6.156 +# 6.157 +#$HTTP["referer"] !~ "^($|http://www\.example\.org)" { 6.158 +# url.access-deny = ( ".jpg", ".jpeg", ".png" ) 6.159 +#} 6.160 +
7.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 7.2 +++ b/lighttpd/stuff/etc/lighttpd/vhosts.conf Tue Dec 18 13:51:14 2007 +0100 7.3 @@ -0,0 +1,10 @@ 7.4 +# /etc/lighttpd/vhosts.conf : Virtual hosts configuration file. 7.5 +# 7.6 + 7.7 +# Example.org 7.8 +# 7.9 +#$HTTP["host"] =~ "(^|\.)example\.org$" { 7.10 + #server.document-root = "/var/www/vhost/exemple.com/html" 7.11 + #server.errorlog = "/var/log/lighttpd/example.org-error.log" 7.12 + #accesslog.filename = "/var/log/lighttpd/example.org-access.log" 7.13 +#}
8.1 Binary file lighttpd/stuff/var/www/images/header.png has changed
9.1 Binary file lighttpd/stuff/var/www/images/lighttpd-80x27.png has changed
10.1 Binary file lighttpd/stuff/var/www/images/slitaz-80x15.png has changed
11.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 11.2 +++ b/lighttpd/stuff/var/www/index.html Tue Dec 18 13:51:14 2007 +0100 11.3 @@ -0,0 +1,83 @@ 11.4 +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 11.5 + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 11.6 +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr"> 11.7 +<head> 11.8 + <title>SliTaz - LightTPD Web server</title> 11.9 + <meta http-equiv="content-type" content="text/html; charset=ISO-8859-1" /> 11.10 + <meta name="description" content="Slitaz lighttpd web server default index" /> 11.11 + <meta name="expires" content="never" /> 11.12 + <meta name="modified" content="2007-11-03 20:30:00" /> 11.13 + <meta name="publisher" content="www.slitaz.org" /> 11.14 + <meta name="author" content="Christophe Lincoln"/> 11.15 + <link rel="stylesheet" type="text/css" href="style.css" /> 11.16 +</head> 11.17 +<body bgcolor="#ffffff"> 11.18 +<!-- Header --> 11.19 +<div id="header"> 11.20 + <a name="top"></a> 11.21 + <h1>SliTaz GNU/Linux - Web server</h1> 11.22 +</div> 11.23 + 11.24 +<!-- Content --> 11.25 +<div id="content"> 11.26 +<h2><font color="#DF8F06">Index of /</font></h2> 11.27 +<h3><font color="#9c2424">Français</font></h3> 11.28 +<p> 11.29 +Bienvenue sur la page d'index de ce serveur libre LightTPD, propulsé 11.30 +par un système d'exploitation SliTaz GNU/Linux. Vous pouvez supprimer 11.31 +cette page, la modifier, ou mettre vos propres pages xHTML, sites et/ou 11.32 +scripts CGI ou PHP. 11.33 +</p> 11.34 +<p> 11.35 +Le fichier de configuration est <code>/etc/lighttpd/lighttpd.conf</code>, 11.36 +il est autodocumenté. Une page du 11.37 +<a href="http://www.slitaz.org/doc/handbook/web-server.html">Handbook</a> 11.38 +de SliTaz, en français, est dédiée à la configuration du serveur web, et la 11.39 +documentation officiel, en anglais, ce trouve sur 11.40 +<a href="http://trac.lighttpd.net/trac/wiki#Documentation"> 11.41 +http://trac.lighttpd.net/trac/wiki#Documentation</a> 11.42 +</p> 11.43 +<h3><font color="#9c2424">English</font></h3> 11.44 +<p> 11.45 +Welcome to free LightTPD web server index page, powered by SliTaz 11.46 +GNU/Linux operating system. You can delet or modify this page to put 11.47 +your own xHTML pages, web sites, CGI or PHP scripts. 11.48 +</p> 11.49 +<p> 11.50 +Configuration file can be found in <code>/etc/lighttpd/lighttpd.conf</code> 11.51 +and official documentation at <a href="http://trac.lighttpd.net/trac/wiki#Documentation" 11.52 + >http://trac.lighttpd.net/trac/wiki#Documentation</a>. 11.53 +</p> 11.54 + 11.55 +<!-- End content --> 11.56 +</div> 11.57 +<hr /> 11.58 +<!-- Footer --> 11.59 +<div align="center" id="footer"> 11.60 +<p> 11.61 +<font size="-1"> 11.62 + <a href="#top">Haut de la page</a> 11.63 +</font> 11.64 +</p> 11.65 +<p> 11.66 +<font size="-1"> 11.67 + Copyright © 2007 <a href="http://www.slitaz.org/">SliTaz</a> - 11.68 + <a href="http://www.gnu.org/licenses/gpl.html">GNU General Public License</a><br /> 11.69 + Code <a href="http://validator.w3.org/">XHTML 1.0 valide</a>. 11.70 +</font> 11.71 +</p> 11.72 +<!-- Logos --> 11.73 +</p> 11.74 +<a href="http://www.lighttpd.net/"> 11.75 +<img 11.76 + border="0" src="images/lighttpd-80x27.png" 11.77 + alt="www.lighttpd.net" title="Powered by LightTPD" 11.78 + style="width: 80px; height: 27px;" /></a> 11.79 +<a href="http://www.slitaz.org/"> 11.80 +<img 11.81 + border="0" src="images/slitaz-80x15.png" 11.82 + alt="www.slitaz.org" title="Powered by SliTaz GNU/Linux" 11.83 + style="width: 80px; height: 15px;" /></a> 11.84 +</div> 11.85 +</body> 11.86 +</html>
12.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 12.2 +++ b/lighttpd/stuff/var/www/style.css Tue Dec 18 13:51:14 2007 +0100 12.3 @@ -0,0 +1,57 @@ 12.4 +/* CSS style for SliTaz GNU/Linux generic xHTML files. */ 12.5 +body { 12.6 + font: 90% sans-serif, vernada, arial; 12.7 + margin: 0; 12.8 + } 12.9 +/* Header */ 12.10 +#header{ 12.11 + background: #f0ba08 url(images/header.png) repeat-x top; 12.12 + color: black; 12.13 + width: 100%; 12.14 + height: 50px ; 12.15 + border-top: 1px solid black; 12.16 + border-bottom: 1px solid black; 12.17 + } 12.18 +#content { 12.19 + margin: 0px 50px 26px 50px; 12.20 + } 12.21 +#footer { 12.22 + border-top: 1px solid black; 12.23 + } 12.24 +a { 12.25 + text-decoration: underline; 12.26 + } 12.27 +a:hover { 12.28 + text-decoration: none; 12.29 + } 12.30 +h1 { 12.31 + margin: 10px 0px 0px 6px; 12.32 + } 12.33 +h2 { 12.34 + margin: 12px 0; 12.35 + } 12.36 +pre { 12.37 + padding: 5px; 12.38 + color: black; 12.39 + background: #e1e0b0; 12.40 + } 12.41 +pre.script { 12.42 + padding: 10px; 12.43 + color: black; 12.44 + background: #e8e8e8; 12.45 + border: 1px inset #333333; 12.46 +} 12.47 +li { 12.48 + line-height: 1.4em; 12.49 + } 12.50 +code { 12.51 + font-size: 100%; 12.52 + color: #669900; 12.53 + background: transparent; 12.54 + } 12.55 +hr { 12.56 + color: white; 12.57 + background-color: white; 12.58 + height: 1px; 12.59 + border: 0; 12.60 + }