/*
 * Small self-hosted stylesheet. Replaces Bootstrap with a similar visual
 * style (readable sans-serif, centered content, bordered hover table, styled
 * inline code) so no external CSS/JS is loaded and the Content-Security-Policy
 * can stay strict (style-src 'self').
 */

body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 15px;
    line-height: 1.5;
    color: #222;
    background-color: #fff;
    margin: 0;
}

.container {
    max-width: 940px;
    margin: 0 auto;
    padding: 20px 15px 40px;
    text-align: center;
}

a {
    color: #337ab7;
    text-decoration: none;
}

a:hover,
a:focus {
    color: #23527c;
    text-decoration: underline;
}

h1 {
    font-weight: 500;
    font-size: 32px;
    margin: 20px 0 15px;
}

p {
    margin: 0 auto 15px;
    max-width: 700px;
}

img {
    max-width: 100%;
    height: auto;
}

code {
    padding: 2px 5px;
    font-size: 90%;
    color: #c7254e;
    background-color: #f9f2f4;
    border-radius: 4px;
    font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
}

table {
    width: 100%;
    max-width: 500px;
    margin: 0 auto 20px;
    border-collapse: collapse;
    text-align: left;
    border: 1px solid #ddd;
}

th,
td {
    padding: 8px;
    border: 1px solid #ddd;
}

thead th {
    vertical-align: bottom;
    border-bottom: 2px solid #ddd;
}

tbody tr:hover {
    background-color: #f5f5f5;
}
