Skip to content

Instantly share code, notes, and snippets.

@sealabcore
Created February 3, 2010 19:09
Show Gist options
  • Save sealabcore/293911 to your computer and use it in GitHub Desktop.
Save sealabcore/293911 to your computer and use it in GitHub Desktop.

Revisions

  1. sealabcore created this gist Feb 3, 2010.
    84 changes: 84 additions & 0 deletions css
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,84 @@
    body
    {
    background-color:black;
    color:white;
    font-family: Georgia, serif;
    font-size: 16px;
    font-style: normal;
    font-weight: normal;
    text-transform: normal;
    letter-spacing: normal;
    line-height: 1.4em;Close

    }

    a
    {
    text-decoration:none;
    color:#ffffff;
    text-transform:lowercase;
    }

    div.container
    {
    float:left;
    position:fixed;
    width:30%;
    margin:0px;
    top:100px;
    left:15%;
    }
    div.header,div.footer
    {
    position:fixed;
    top:5px;
    padding:0.5em;
    }
    h1.header
    {
    position:fixed;
    float:left;
    left:100px;
    padding:0;
    margin:0;
    font-family: Georgia, serif;
    font-size: 50px;
    font-style: italic;
    font-weight: normal;
    text-transform: normal;
    letter-spacing: normal;
    line-height: 1.4em;
    }
    h2.header
    {
    position:fixed;
    float:right;
    right:50px;
    font-family: Georgia, serif;
    font-size:12px;
    padding:0;
    margin:0;
    }
    h1.footer
    {
    font-size:12px;
    position:fixed;
    bottom:0px;
    right:50px;
    padding:0;
    margin:0;
    }

    div.left
    {
    float:left;
    width:160px;
    margin:0;
    padding:1em;
    }
    div.content
    {
    margin-left:190px;
    border-left:1px solid gray;
    padding:1em;
    }