I am not a designer

Partly in my frustration with CSS, I have decided to abandon CSS completely from all my personal sites.
Meh: That didn’t last long. I’ve used ‘Chocolate‘ from W3C Core Styles now.

3 thoughts on “I am not a designer

  1. Noah Slater

    Bah, I liked the look of this site before! Try this CSS for size if you want something minimalist:
    * {
    margin: 0;
    padding: 0;
    border: none;
    font-weight: inherit;
    font-style: inherit;
    font-size: 1em;
    font-family: inherit;
    vertical-align: baseline;
    background: transparent;
    }
    body {
    padding: 3em;
    font: 1.2em/4em “Lucida Grande”,”Trebuchet MS”,”Tahoma”,”Helvetica”,sans-serif;
    color: #666;
    background: white
    }
    h1 {
    font-size: 3em;
    }

Comments are closed.