/* index.css - styles for the blog index page */
body {
    font-family: monospace;
    background: #fff;
    color: #222;
    margin: 0;
    padding: 2em;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

/* Top navigation bar between the blog (posts) and ideas list pages; the
   current section renders as a plain word, the other as a link. */
header nav a,
header nav .current {
    margin-right: 1.5em;
}

header nav .current {
    color: #222;
}

.made-with {
    margin-top: 4em;
    font-family: monospace;
    font-size: 0.75em;
    color: #bbb;
    text-align: center;
}

.made-with a {
    color: #bbb;
}
h1, h2, h3 {
    color: #007acc;
}
p {
    line-height: 1.6;
    margin-bottom: 1em;
}

/* The body text is already monospace, so code needs a tint to stand out. */
code {
    background: #f4f4f4;
    border: 1px solid #e2e2e2;
    border-radius: 3px;
    padding: 0.1em 0.35em;
}

pre {
    background: #f4f4f4;
    border: 1px solid #e2e2e2;
    border-radius: 3px;
    padding: 1em;
    overflow-x: auto;
    line-height: 1.45;
}

pre code {
    background: none;
    border: none;
    padding: 0;
}
img {
    max-width: 100%;
    display: block;
    margin: 1em auto;
}

.date {
    font-family: monospace;
    font-size: 0.85em;
    color: #999;
    display: block;
    margin-bottom: 0.2em;
}

.group {
    margin-bottom: 1.5em;
}

.group ul {
    margin-top: 0.2em;
    padding-left: 0;
    list-style: none;
}

a {
    font-family: monospace;
    color: #5a9ab5;
}

a:visited {
    color: #5a9ab5;
}

a:active {
    color: #5a9ab5;
}

