Changeset 1119


Ignore:
Timestamp:
Sep 28, 2006, 1:33:21 AM (17 years ago)
Author:
Sam Hocevar
Message:
  • New layout test.
Location:
www
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • www/index.html

    r936 r1119  
    1919<body>
    2020
     21<div class="main">
     22
    2123<img src="logo-caca.png" width="128" height="128"
    2224     alt="libcaca logo" style="margin: 20px; float: right;" />
     
    2426<h1> libcaca - Colour AsCii Art library </h1>
    2527
    26 <p class="right"> <i>it’s da shit!</i> </p>
     28<p style="text-align: right;"> <i>it’s da shit!</i> </p>
    2729
    2830<p> The libcaca library is a graphics library that outputs text instead of
     
    4345
    4446<p> Libcaca is <a href="http://www.gnu.org/philosophy/free-sw.html">free
    45 software</a>, and can be used, modified and ditributed under the terms of the
     47software</a>, and can be used, modified and distributed under the terms of the
    4648<a href="http://sam.zoy.org/wtfpl/">Do What The Fuck You Want To Public
    4749License</a>. The logo on this page is copyrighted by Akira Toriyama so if
     
    402404<p><small><code><?php echo '$Id$ Host: ' . $_SERVER['REMOTE_ADDR'];?></code></small></p>
    403405
     406</div>
     407
    404408</body>
    405409</html>
  • www/main.css

    r937 r1119  
    77
    88html, body {
    9   height: 100%;
    10   width: 100%;
    119  padding: 0;
    1210  border: 0;
     11  margin: 0;
    1312}
    1413
    1514body {
    1615  color: black;
    17   background-color: #eeccbb;
     16  background-color: #ddeebb;
    1817}
    1918
    2019body,td {
    2120  font-family: sans-serif, Verdana, Arial, Helvetica;
    22   font-size: 1em;
     21  font-size: 0.9em;
     22}
     23
     24div.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
     35h1 {
     36  font-size: 1.6em;
     37  font-variant: small-caps;
     38  color: #88bb66;
     39}
     40
     41h2 {
     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;
    2349}
    2450
    2551p {
    26  /* text-indent: 10pt; */
     52  text-indent: 1em;
    2753  text-align: justify;
    2854}
    2955
    30 a:link    { color: #995522; background-color: inherit; }
    31 a:visited { color: #662200; background-color: inherit; }
    32 a:active  { color: #77ff88; background-color: inherit; }
     56a:link    { color: #225599; background-color: inherit; }
     57a:visited { color: #002266; background-color: inherit; }
     58a:active  { color: #88ff77; background-color: inherit; }
    3359
    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.