/**
 * A clean concise theme for your GitHub projects
 *
 * Licenced under GPL v3
 * http://www.gnu.org/licenses/gpl.html
 **/

/* Page */
body {
    background: #FFFFFF;
    font-family: arial,sans-serif;
}

/* Header */
header {
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: #FFFFFF;
}

/* Footer */
footer {
    background-color: #FFFFFF;
    margin-top: 50px;
    -webkit-box-shadow: -10px 0 15px #000000;
    -moz-box-shadow: -10px 0 15px #000000;
    box-shadow: -10px 0 15px #000000;
}

footer p {
    color: #333333;
}

div.repo-author {
    padding-top: 30px;
}

/* Navigation */

#navigation li {
    margin-top: 2px;
    margin-bottom: 2px;
}

/* Text */
/* Text */
p {
    color: #000000;
    font-size: 12px;
}

strong, li {
    color: #000000;
    font-size: 14px;
}

strong {
    font-weight: bold;
    color: #0000;
}

a {
    color: #0000;
    text-decoration: none;
}

a:visited {
    color: #0000;
}

a:hover {
    text-decoration: underline;
}

h1, h2 {
    font-family: georgia,serif;
}

h1 {
    font-style: italic;
    color: #0000;
    font-size: 50px;
    margin: 0;
}

h2 {
    color: #0000;
    font-size: 20px;
    font-weight: bold;
    line-height: 23px;
    padding-top: 15px;
}

h3, h4, h5 {
    color: #000000;
    font-family: inherit;
}


/* Useful classes and styles */
a.github-ribbon {
    position: absolute;
    top: 0;
    left: 0;
    border: 0;
}

code {
    font-size: 12px;
    margin-top: 15px;
    min-height: 50px;
    border: 3px solid #000000;
    background-color: #f4f4f4;
    display: block;
    padding: 20px;
    margin-bottom: 20px;
    font-family: monospace;
    -webkit-box-shadow: 3px 3px 5px #000000;
    -moz-box-shadow: 3px 3px 5px #000000;
    box-shadow: 3px 3px 5px #000000;
    overflow-x: auto;
}

pre.prettyprint {
    border: 0;
    padding: 0;
    margin: 0;
}

img.repo-author-logo {
    float: left;
    margin-right: 15px;
}

/* Media queries */
/* Hide the ribbon when we are on a phone, screen is too small */
@media only screen and (max-width: 479px) {
    a.github-ribbon {
        display: none;
    }
}