/*
 * Cyningstan Web Site Theme
 * HTML5 layout for screens >= 960px
 *
 * Copyright (C) Damian Walker 2016
 * Created: 25-Mar-2016
 */

/*----------------------------------------------------------------------
 * Header section
 */

/* header should have an image */
body > header {
    background-image: url(/images/cyningstan-header.png);
    background-repeat: no-repeat;
    background-position: center;
}

/* title and tagline hidden, as the image contains it all */
body > header > h1,
body > header > p {
    display: none;
}

/*----------------------------------------------------------------------
 * Front page
 */

/* background for the main content */
#cyningstan .container {
    background-image: url(/images/front-page.jpg);
    background-repeat: no-repeat;
}

/*----------------------------------------------------------------------
 * Archive template styling
 */

#archive .content ul {
    -moz-column-count: 3;
    -moz-column-gap: 60px;
    -webkit-column-count: 3;
    -webkit-column-gap: 60px;
    column-count: 3;
    column-gap: 60px;
    list-style-type: none;
    margin: 0px;
    padding: 0px;
}
#archive .content ul li {
    padding-left: 16px;
    text-indent: -16px;
}

/*----------------------------------------------------------------------
 * AddThis buttons
 */

/* margin above buttons */
.addthis_toolbox {
    margin-top: 1em;
}

/*----------------------------------------------------------------------
 * General content section
 */

/* boxouts want a dark brown border */
.lower-inset {
    padding-left: 8px;
    padding-right: 8px;
}

/* inline figures */
figure.inline {
    clear: right;
    float: right;
    max-width: 320px;
    margin: 0;
    margin-bottom: 16px;
    margin-left: 40px;
}


