- Timestamp:
- Sep 28, 2006, 2:53:55 AM (16 years ago)
- Location:
- www
- Files:
-
- 3 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
www/.htaccess
r934 r1120 24 24 25 25 # Redirects for disallowed stuff 26 RewriteRule ^.svn/.* /.svn/ [ R=permanent,L]27 RewriteRule (.*)/.svn/.* /$1/.svn/ [ R=permanent,L]26 RewriteRule ^.svn/.* /.svn/ [L] 27 RewriteRule (.*)/.svn/.* /$1/.svn/ [L] 28 28 29 # Redirects for manual 30 RewriteRule ^manual/ /manual.html?page=index [L] 31 RewriteRule ^manual/(.*)[.]html /manual.html?page=$1 [L] 32 -
www/index.html
r1119 r1120 19 19 <body> 20 20 21 < div class="main">21 <?php include($_SERVER["DOCUMENT_ROOT"]."header.inc"); ?> 22 22 23 23 <img src="logo-caca.png" width="128" height="128" 24 24 alt="libcaca logo" style="margin: 20px; float: right;" /> 25 25 26 <h1> libcaca - Colour AsCii Art library </h1> 27 28 <p style="text-align: right;"> <i>it’s da shit!</i> </p> 26 <h2> Introduction </h2> 29 27 30 28 <p> The libcaca library is a graphics library that outputs text instead of … … 402 400 </p></blockquote> 403 401 404 <p><small><code><?php echo '$Id$ Host: ' . $_SERVER['REMOTE_ADDR'];?></code></small></p> 405 406 </div> 402 <?php include($_SERVER["DOCUMENT_ROOT"]."footer.inc"); ?> 407 403 408 404 </body> -
www/main.css
r1119 r1120 22 22 } 23 23 24 div.main {24 div.main, div.logo { 25 25 width: 720px; 26 26 display: table; … … 31 31 border-color: #449933; 32 32 margin: 0 auto 0 auto; 33 text-align: justify; 34 } 35 36 div.links { 37 text-align: center; 38 background-color: #bbdd99; 39 border-style: solid; 40 border-width: 1px 0 1px 0; 41 border-color: #449933; 42 padding: 0px; 33 43 } 34 44 … … 51 61 p { 52 62 text-indent: 1em; 53 text-align: justify;63 text-align: inherit; 54 64 } 55 65 56 a:link { color: #225599; background-color: inherit; } 57 a:visited { color: #002266; background-color: inherit; } 58 a:active { color: #88ff77; background-color: inherit; } 66 a.menu { 67 background-color: white; 68 text-decoration: none; 69 border: solid #449922 1px; 70 padding: 4px 15px 4px 15px; 71 margin: 0 10px 0 10px; 72 } 59 73 74 a.menu:hover { 75 background-color: #ddeebb; 76 } 77 78 a:link { color: #225599; } 79 a:visited { color: #002266; } 80 a:active { color: #88ff77; } 81
Note: See TracChangeset
for help on using the changeset viewer.