media/css/base.css @ ff79b07cc506

Adjust list margins.
author Steve Losh <steve@stevelosh.com>
date Wed, 23 Dec 2009 21:16:35 -0500
parents 8a15a71f3376
children 1f5a661bd38b
/* @override http://localhost:8080/media/css/base.css */
* {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Helvetica Neue", HelveticaNeue, Arial, Helvetica, sans-serif;
    color: #111;
}

div#main-wrap {
    width: 64em;
    margin: 0 auto;
}

a {
    text-decoration: none;
    color: #e50053;
}
a:hover {
    text-decoration: underline;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
    color: #111;
}
h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover {
    color: #e50053;
    text-decoration: none;
}

#header {
    margin-top: 1.5em;
    margin-bottom: 3em;
}
#header h1 {
	letter-spacing: -3px;
    font-size: 3.5em;
    font-weight: normal;
    font-family: "Helvetica Neue", HelveticaNeue, Arial, Helvetica, sans-serif;
    margin-bottom: 0em;
}
#header span.page-title {
    color: #666;
    text-transform: lowercase;
}

#nav {
    float: right;
    width: 10em;
    font-size: 1.5em;
    font-weight: bold;
    line-height: 2em;
}
#nav ul li {
    list-style: none;
    border-bottom: 1px solid #eee;
}
#nav ul li:last-child {
    border-bottom: none;
}
#nav a {
    border: none;
    font-style: normal;
    color: #111;
}
#nav a:hover {
    color: #e50053;
    text-decoration: none;
}

#splash-info {
    font-size: 1.5em;
    line-height: 2em;
    text-align: right;
    color: #888;
    font-family: "Helvetica Neue Light", HelveticaNeue-Light, Arial, Helvetica, sans-serif;
}
#splash-info ul li {
    margin: 0;
    list-style: none;
    border-bottom: 1px solid #eee;
}
#splash-info ul li:last-child {
    border-bottom: none;
}

#content {
	width: 46em;
	margin-bottom: 5em;
}

div#section-listing {
    font-size: 1.5em;
    font-weight: bold;
    line-height: 2em;
    color: #888;
}
div#section-listing ol {
    list-style: none;
}
div#section-listing ol li {
    border-bottom: 1px solid #eee;
    margin: 0;
}
div#section-listing ol a {
    color: #111;
}
div#section-listing ol a:hover {
    color: #e50053;
    text-decoration: none;
}
div#section-listing ol li:last-child {
    border-bottom: none;
}
div#section-listing ol li span.snip {
    font-size: 0.65em;
    line-height: 1em;
    margin-left: 0.5em;
    font-weight: normal;
}

code, pre {
    font-family: Consolas, Monaco, "Courier New", monospace;
    font-size: 12px;
    line-height: 21px;
}
p code, li code {
    border: 1px solid #ccc;
    background-color: #fafafa;
    padding: 1px 3px;
}
pre {
    border: 1px solid #ccc;
    background-color: #fafafa;
    padding: 0px 5px;
    margin-left: 2em;
    overflow: auto;
}