﻿@import url(https://fonts.googleapis.com/css?family=Righteous);
html,
body {
    height: 100%;
    min-height: 100%;
    margin: 0;
    padding: 0;
    background-image: url('../img/white_wall_hash.png');
}

header.chris03-header-blog {
    font-family: 'Righteous', cursive;
    color: #f8f8f8;
    height: 180px;
    width: 100%;
    background: #fff no-repeat bottom;
    background-size: cover;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.5);
}

.chris03-content {
    min-height: 100%;
    height: auto!important;
    margin: 0 auto -25px;
}

.chris03-content:after {
    content: '';
    display: block;
    height: 25px;
}

footer.chris03-footer {
    color: #666;
    font-size: 10px;
    font-style: italic;
    text-align: center;
    height: 25px;
    line-height: 25px;
}

.chris03-header-blog h1 {
    text-align: center;
    font-size: 4em;
    padding-top: 42px;
    margin: 0;
    text-shadow: 2px 2px #000000;
}

.chris03-header-blog h1 a {
    color: #fff;
    text-decoration: none !important;
}

.margin-top-10 {
    margin-top: 10px;
}

.margin-top-20 {
    margin-top: 20px;
}

.post-header time {
    margin-right: 20px;
}

.glyphicon.spinning {
    animation: spin 1s infinite linear;
    -webkit-animation: spin2 1s infinite linear;
}

.highcharts-container {
    box-shadow: 1px 1px 5px;
}

@keyframes spin {
    from {
        transform: scale(1) rotate(0deg);
    }
    to {
        transform: scale(1) rotate(360deg);
    }
}

@-webkit-keyframes spin2 {
    from {
        -webkit-transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
    }
}