/* Styles for resume site */

/* Whole-document text styles */
body {
    font-family: 'Roboto', sans-serif;
    color: #333 !important;
}

span.bold {
    font-weight: 600;
}

span.heavy {
    font-weight: 900;
}

ul {
    padding-inline-start: 12px;
}

/* Allow paragraph sections to scrunch together */
/* We will take care of this with a manual margin */
.resume p {
    margin: 0;
}

/* Color all aqua sections of the document */
.aqua {
    background-color: #6fccad;
    background-clip: content-box;
}

/* Controls for the colored line */
div.line {
    height: 0.5em;
}

/* Controls for the major sections of the document */
.main-body, .sidebar, .contact-info {
    margin: 16px;
}

/* Controls for the subsections of the document */
.subsection-title {
    font-size: 2em;
    font-weight: 900;
}

.subsection-content {
    margin-left: 12px;
    margin-right: 12px;
}

/* Controls for the "entries" -- a particular job, project, etc. */
.entry {
    margin-bottom: 12px;
    line-height: 1.2;
}

p.entry-leadline {
    font-size: 1.2em;
    letter-spacing: -0.4px;
}

p.entry-tiny {
    font-size: 0.8em;
    color: #808080;
}

p.sidebar-tiny {
    font-size: 0.8em;
    margin-bottom: 4px;
}

/* Controls for the online presence settings... Mostly inlining elements */
.online.entry > * {
    vertical-align: middle;
    display: inline;
    text-decoration: underline;
}

img.online-logo {
    height: 1.2em;
    margin-right: 6px;
}


/* Modals */
.modal-body ul {
    margin-left: 24px
}


/* Links */
a, a:link, a:visited {
    color: #333;
    text-decoration: none;
}

div.modal a {
    text-decoration: underline;
}

a .entry-leadline {
    text-decoration: underline;
}

a ul {
    text-decoration: underline;
}