/* sunkite.skaru.se */

body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    background: #181818;
    color: #d0d0d0;
    margin: 0;
    padding: 0;
}

/* ---- header ---- */

#header {
    background: #111c2a;
    color: #ffffff;
    padding: 14px 18px 10px 18px;
    border-bottom: 3px solid #2e5a8a;
}

#header h1 {
    margin: 0;
    font-size: 20px;
    letter-spacing: 1px;
    font-weight: bold;
}

#header .tagline {
    margin: 4px 0 0 0;
    font-size: 12px;
    color: #7aadd4;
}

/* ---- nav ---- */

#nav {
    background: #1e2530;
    border-bottom: 2px solid #2e5a8a;
    padding: 5px 18px;
    font-size: 13px;
}

#nav a {
    display: inline-block;
    padding: 2px 9px;
    margin-right: 3px;
    color: #90bde0;
    text-decoration: none;
    background: #252d3a;
    border: 1px solid #2e5a8a;
}

#nav a:hover,
#nav a.active {
    background: #2e5a8a;
    color: #ffffff;
    border-color: #4a82b8;
}

/* ---- main content ---- */

#content {
    padding: 20px 18px 40px 18px;
    max-width: 780px;
    background: #212121;
    border-right: 1px solid #333;
    min-height: 500px;
}

h2 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #7aadd4;
    border-bottom: 1px solid #2e5a8a;
    padding-bottom: 3px;
    margin-top: 24px;
    margin-bottom: 10px;
}

h3 {
    font-size: 14px;
    color: #7aadd4;
    margin-bottom: 6px;
}

p {
    line-height: 1.6;
    margin: 0 0 10px 0;
}

a {
    color: #5ba0d8;
}

a:visited {
    color: #a07ad8;
}

/* ---- tables ---- */

table {
    border-collapse: collapse;
    font-size: 14px;
    width: 100%;
    max-width: 600px;
    margin-top: 8px;
}

th {
    background: #111c2a;
    color: #90bde0;
    padding: 5px 10px;
    text-align: left;
    font-weight: normal;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid #2e5a8a;
}

td {
    padding: 5px 10px;
    border: 1px solid #333;
    vertical-align: top;
}

tr:nth-child(even) td {
    background: #1c1c1c;
}

/* ---- status badges ---- */

.status-up {
    color: #4caf50;
    font-weight: bold;
}

.status-down {
    color: #e05555;
    font-weight: bold;
}

.status-planned {
    color: #888;
    font-style: italic;
}

.status-wip {
    color: #e09030;
    font-weight: bold;
}

/* ---- notice box ---- */

.notice {
    background: #2a2500;
    border: 1px solid #6a5c00;
    border-left: 4px solid #c8a800;
    padding: 8px 12px;
    font-size: 13px;
    margin: 14px 0;
    color: #d4c060;
}

/* ---- todo / markdown-style list ---- */

.md ul {
    padding-left: 20px;
    line-height: 1.8;
    margin: 6px 0;
}

.md li.done {
    color: #666;
    text-decoration: line-through;
}

.md li.open::marker {
    content: "[ ] ";
    font-family: monospace;
}

.md li.done::marker {
    content: "[x] ";
    font-family: monospace;
    color: #666;
}

.md h3 {
    margin-top: 18px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
    border-bottom: 1px dashed #444;
    padding-bottom: 2px;
}

/* ---- links page ---- */

.links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.links-list li {
    padding: 8px 0;
    border-bottom: 1px solid #333;
    font-size: 15px;
}

.links-list li:last-child {
    border-bottom: none;
}

.links-list .link-desc {
    display: block;
    color: #888;
    font-size: 13px;
    margin-top: 2px;
}

/* ---- footer ---- */

#footer {
    padding: 8px 18px;
    border-top: 1px solid #333;
    font-size: 11px;
    color: #555;
    background: #181818;
    max-width: 780px;
}