/*
logo green : #44b653
light blue : #d9edf7
white semi transparent: rgba(255,255,255,0.7)
 */

@import url(https://fonts.googleapis.com/css?family=Crafty+Girls|Libre+Baskerville:400,400italic|Roboto+Condensed:400,700);

html, body {
    min-height: 100%;
}

body {
    background: #d9edf7 url('../images/background.png') center center repeat;
    font-size: 16px;
    padding-top: 60px;
}

header {
    text-align: center;
}

header.page-header {
    border-bottom: none;
    margin-top: 15px;
}

h1 {

    font-size: 3em;
}

h1 a {
    text-decoration: none;
}

h1 a:hover {
    text-decoration: none;
}

h2 {
    font-weight: 400;
    font-size: 110%;
}

h2, h3, h4 {
    font-family: 'Roboto Condensed', sans-serif;
    text-transform: uppercase;
}

blockquote {
    border: none;
}

.no-width-overflow {
    max-width: 100%;
}

.frame {
    background-color: rgba(255,255,255,0.7);
    padding: 1em;
    border-radius: 10px;
    margin-bottom: 1em;
}

 .frame h3, .frame h4 {
    margin-top: 0;
}

.kid-writing {
    font-family: 'Crafty Girls', cursive;
}

.stand-out {
    font-weight: 700;
    color: #44b653;
}

a.invisible-link, a.invisible-link:hover {
    text-decoration: inherit;
    color: inherit;
}

.prepend-arobase::before {
    content: '@';
}

#append-name::after {
    content: ' Baron';
}

#append-street::after {
    content: ' Eugène Pons';
}

#prepend-zipcode::before {
    content: '69004 ';
}


/* Menu */
.navbar {
    background-color: rgba(255,255,255,0.8);
    border-bottom: solid #ffffff 2px;
}

.dropdown-menu {
    background-color: #ffffff;
    border-color: #44b653;
    border-width: 2px;

}

@media (max-width: 767px) {
    .navbar-default .navbar-collapse {
        background-color: #ffffff;
    }
}

.navbar-collapse.collapse.in {
    box-shadow: 0 10px 10px 0 rgba(0,0,0,0.3);
}

.dropdown-menu .divider {
    height: 2px;
}

#menu-link-add-new {
    background-color: #44b653;
    color: #ffffff;
    font-family: 'Crafty Girls', cursive;
    padding: 10px;
    margin-top: 5px;
    border-radius: 1.2em;
}

/* footer */
footer {
    padding: 1em;
    color: #bbbbbb;
    font-size: 0.9em;
    background-color: rgba(0,0,0,0.6);
    box-shadow: 0px 500px 0px 500px rgba(0,0,0,0.6); /* make believe footer expand to page bottom */
    border-top: solid #000000 2px;
}

@media (max-width: 767px) {
    footer div.col-sm-4 {
        text-align: center;
        margin-bottom: 1em;
    }
}

/* Login */
.btn-oauth-owner {
    width: 100%;
    display: block;
    margin-bottom: 1em;
}
#oauth-owner-facebook {
    background-color: #3b5998;
    color: #ffffff;
    border-color: #3b5998;
}

#oauth-owner-twitter {
    background-color: #55acee;
    color: #ffffff;
    border-color: #55acee;
}

/* pagination */
.pagination-button, .pagination-separator {
    border: solid white 2px;
    border-radius: 50%;
    margin-left: 0.2em;
    margin-right: 0.2em;
    font-size: 1em;
    line-height: calc(2em - 4px);
    display: inline-block;
    width: 2em;
    height: 2em;
    color: white;
    text-decoration: none;
}

.pagination-active {
    background-color: white;
    color: #ffffff;
}

.pagination-separator {
    border-color: transparent;
}

/* Payload -> main content of page */
#payload {
    min-height: 370px;
    margin-bottom: 2em;
}

/* Post */
.post {
    background-color: white;
    border-radius: 10px;
    padding: 1em 1em 0.5em 1em;
    margin-bottom: 1em;
    box-shadow: 0px 3px 5px -2px rgba(0,0,95,0.3);
}

.post.private-post {
    background-color: #ffffe4;
}

.post-header {
    margin-bottom: 1em;
}

.post-title {
    font-size: 1.4em;
    letter-spacing: 0.07em;
}

.post-title:hover {
    text-decoration: none;
}

.post-content em {
    font-style: italic;
    font-family: 'Libre Baskerville', serif;
}

.post-meta {
    font-size: smaller;
    line-height: inherit;
}

.post-footer {
    margin-top: 1em;
    font-size: smaller;
}

.like-widget {
    color: red;
}

.like-widget {
    cursor: pointer;
}

@keyframes to-be-liked {
    0% {color: #bbbbbb;}
    25% {color: red;}
}

.like-widget.to-be-liked .like-icon {
    color: #bbbbbb;
    animation-name: to-be-liked;
    animation-duration: 2s;
    animation-iteration-count: infinite;
}

/* cookies policy */
#cookie-policy {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: rgba(0,0,0,0.5);
    color: white;
    padding: 0.5em;
    font-size: smaller;
}

#cookie-policy span {
    cursor: pointer;
    text-decoration: underline;
}

#cookie-policy span:first-of-type {
    border: solid white thin;
    border-radius: 3px;
    padding: 0 0.3em 0.3em 0.3em;
    text-decoration: none;
}


/* questions and answers */
.q-and-a blockquote {
    border-left: solid 4px #ff8800;
    font-size: inherit;
}
