Changeset 1119
- Timestamp:
- Sep 28, 2006, 1:33:21 AM (17 years ago)
- Location:
- www
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
www/index.html
r936 r1119 19 19 <body> 20 20 21 <div class="main"> 22 21 23 <img src="logo-caca.png" width="128" height="128" 22 24 alt="libcaca logo" style="margin: 20px; float: right;" /> … … 24 26 <h1> libcaca - Colour AsCii Art library </h1> 25 27 26 <p class="right"> <i>it’s da shit!</i> </p>28 <p style="text-align: right;"> <i>it’s da shit!</i> </p> 27 29 28 30 <p> The libcaca library is a graphics library that outputs text instead of … … 43 45 44 46 <p> Libcaca is <a href="http://www.gnu.org/philosophy/free-sw.html">free 45 software</a>, and can be used, modified and di tributed under the terms of the47 software</a>, and can be used, modified and distributed under the terms of the 46 48 <a href="http://sam.zoy.org/wtfpl/">Do What The Fuck You Want To Public 47 49 License</a>. The logo on this page is copyrighted by Akira Toriyama so if … … 402 404 <p><small><code><?php echo '$Id$ Host: ' . $_SERVER['REMOTE_ADDR'];?></code></small></p> 403 405 406 </div> 407 404 408 </body> 405 409 </html> -
www/main.css
r937 r1119 7 7 8 8 html, body { 9 height: 100%;10 width: 100%;11 9 padding: 0; 12 10 border: 0; 11 margin: 0; 13 12 } 14 13 15 14 body { 16 15 color: black; 17 background-color: # eeccbb;16 background-color: #ddeebb; 18 17 } 19 18 20 19 body,td { 21 20 font-family: sans-serif, Verdana, Arial, Helvetica; 22 font-size: 1em; 21 font-size: 0.9em; 22 } 23 24 div.main { 25 width: 720px; 26 display: table; 27 background: white; 28 padding: 0 10px 0 10px; 29 border-style: solid; 30 border-width: 0 1px 0 1px; 31 border-color: #449933; 32 margin: 0 auto 0 auto; 33 } 34 35 h1 { 36 font-size: 1.6em; 37 font-variant: small-caps; 38 color: #88bb66; 39 } 40 41 h2 { 42 font-size: 1.3em; 43 font-variant: small-caps; 44 color: #66aa44; 45 text-indent: 0.5em; 46 border-style: solid; 47 border-width: 0 0 2px 0; 48 border-color: #ddeebb; 23 49 } 24 50 25 51 p { 26 /* text-indent: 10pt; */52 text-indent: 1em; 27 53 text-align: justify; 28 54 } 29 55 30 a:link { color: # 995522; background-color: inherit; }31 a:visited { color: # 662200; background-color: inherit; }32 a:active { color: # 77ff88; background-color: inherit; }56 a:link { color: #225599; background-color: inherit; } 57 a:visited { color: #002266; background-color: inherit; } 58 a:active { color: #88ff77; background-color: inherit; } 33 59 34 h1 { font-size: 1.4em; }35 h2 { font-size: 1.2em; text-decoration: underline; }36 37 td.nowrap { white-space: nowrap; }38 blockquote.center, p.center, td.center { text-align: center; }39 blockquote.right, p.right, td.right { text-align: right; }40
Note: See TracChangeset
for help on using the changeset viewer.