/* General layout */
html, body {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Helvetica Neue", sans-serif;
    line-height: 1.5;
    color: hsla(30, 40%, 20%, 1);
    background: hsla(30, 40%, 96%, 1);
    margin: 2rem;
    overflow-y: scroll;
}

a, a:link, a:visited, a:hover, a:active {
    color: hsla(30, 40%, 20%, 1);
    text-decoration: none;
    border-bottom: 0.125rem solid hsla(160, 50%, 50%, 1);
}

a:hover {
    border-bottom: 0.125rem solid hsla(160, 50%, 40%, 1);
}

h1, h2, h3, h4 {
    margin: 0 0 1rem 0;
    padding: 0;
}

h1 {
    font-size: 1.25rem;
}

h2 {
    font-size: 1.125rem;
}

h3 {
    font-size: 1rem;
}

h4 {
    font-size: 0.875rem;
}

p {
    margin: 0 0 1rem 0;
}

li {
    list-style-type: square;
}

.page-wrapper {
    max-width: 40rem;
    margin: 2rem auto;
}

/* Navigation */
nav.profile {
    text-align: center;
    padding: 2rem 0 2rem 0;
}

nav.profile a.avatar {
    display: inline-block;
    width: 100px;
    height: 100px;
    border: 0.25rem solid #fff;
    border-radius: 50%;
    box-shadow: inset 0.125rem 0.125rem 0.25rem 0 rgba(0, 0, 0, 0.25);
    background: url("/images/zaa_150x150.png");
    background-size: contain;
    text-indent: -9999px;
}

/* Index, "About me" page */
article.about-me ul.links {
    padding: 0;
    margin: 2rem 0 0 0;
    list-style: none;
    text-align: center;
}

article.about-me ul.links li {
    display: inline-block;
    padding: 0.5rem 1rem;
    margin: 0.25rem;
    background: hsla(160, 50%, 50%, 1);
    border-radius: 0.125rem;
    list-style: none;
}

article.about-me ul.links li a {
    border: 0;
    color: hsla(30, 40%, 96%, 1);
}

article.about-me ul.links li:hover {
    background: hsla(160, 50%, 40%, 1);
}

article.about-me ul.links li:hover a {
    border: 0;
}

/* Resume pages */
article.resume section {
    margin: 2rem 0 3rem 0 ;
}

article.resume .job-description {
    margin: 2rem 0 3rem 0;
}

article.resume .job-description ul {
    padding: 0 0 0 2rem;
}

article.resume .job-description ul li {
    margin: 0 0 1rem 0;
}

article.resume .job-description ul li ul li {
    margin: 0 0 0.5rem 0;
}

article.resume .job-description h3 {
    margin-bottom: 0.5rem;
}

article.resume .job-description h4 {
    margin: 0;
}

article.resume .work-dates {
    color: hsla(30, 10%, 40%, 1);
}

/* Blog Index page */
article.blog-index h1 {
    margin: 0 0 2rem 0;
}

article.blog-index .blog-post {
    margin: 0 0 4rem 0;
}

/* Blog post */
.blog-post blockquote {
    margin: 0;
    padding: 0 0 0 1rem;
    border-left: 0.125rem solid hsla(30, 40%, 25%, 1);
    color: hsla(30, 40%, 25%, 1);
    font-style: italic;
}

.blog-post pre {
    white-space: pre-wrap;
    font-size: 0.75rem;
}

.blog-post iframe {
    border: 0;
}

/* vim: set ts=4 sts=4 sw=4 et: */
