/* post.css - styles for individual blog posts and ideas */
body {
    font-family: monospace;
    background: #fff;
    color: #222;
    margin: 0;
    padding: 2em;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}
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;
}
.made-with {
    margin-top: 4em;
    font-family: monospace;
    font-size: 0.75em;
    color: #bbb;
    text-align: center;
}

.made-with a {
    color: #bbb;
}

header nav a,
header nav .current {
    margin-right: 1.5em;
}

header nav .current {
    color: #222;
}
