/**
 * blog.css
 * Main CSS for Chad's Blog
 * Project: Chad's Blog
 * Author: Chad Snelson
 * Date: 4/12/2021
 * Copyright (c) 2021 by Chad Snelson. All rights reserved.
 */

#welcome_text {
    padding-bottom: 0;
}

footer {
    width: 100%;
    background: white;
    color: #727272;
    text-align: center;
    vertical-align: middle;
    font-size: 0.9rem;
}

footer p {
    width: 100%;
    height: 100%;
    margin: auto;
}

.blog-posts-window {
    width: 100%;
    height: 100%;
    margin-top: 70px;
    background: #f5f5f5;
}

#move_bar {
    display: none;
}

#no_posts_window {
    display: flex;
    width: 100%;
    height: 100%;
    padding-left: 10px;
    padding-right: 10px;
    justify-content: center;
    align-items: center;
}

#no_posts_window p {
    color: red;
    font-size: 2rem;
    font-weight: bold;
}

.dropdown-item {
    padding-left: 2rem;
}

.dropdown-item-disabled {
    padding-left: 2rem;
}

.dropdown-item-checked:before {
    position: absolute;
    left: .4rem;
    content: '✓';
    font-weight: 600;
}

.blog-post {
    margin-bottom: 1rem;
}

.blog-post-title {
    margin-bottom: 0.25rem;
    font-size: 2.5rem;
}

.blog-post-date {
    margin-bottom: 1.25rem;
    color: #696969;
}

.blog-post-tags {
    margin-bottom: 0.5rem;
}

.blog-post-tags span {
    margin-right: 10px;
    color: black;
    font-weight: bold;
}

.blog-post-triggers span {
    color: red;
    font-weight: bold;
}

.blog-post-image {
    display: block;
    margin: 0 auto 0 auto;
    padding: 5px;
    text-align: center;
    max-width: 100%;
    max-height: 100%;
}

.blog-post-text a {
    color: blue;
}

.conversation_me {
    color: blue;
    font-weight: bold;
}

.conversation_other {
    color: #B22222;
    font-weight: bold;
}

#fb_button {
    width: 32px;
    height: 32px;
    margin-right: 24px;
}

#fb_button svg {
    width: 32px;
    height: 32px;
}

#tw_button {
    width: 32px;
    height: 32px;
    margin-top: 10px;
    margin-bottom: 10px;
}

#tw_button svg {
    width: 32px;
    height: 32px;
}

.blog-post-tags .tag_1 {
    color: blue;
}

.blog-post-tags .tag_2 {
    color: #00008B;
}

.blog-post-tags .tag_3 {
    color: green;
}

.blog-post-tags .tag_4 {
    color: #483D8B;
}

.blog-post-tags .tag_5 {
    color: #0000CD;
}

.blog-post-tags .tag_6 {
    color: #CC0000;
}

.blog-post-tags .tag_7 {
    color: #993300;
}

.blog-post-tags .tag_8 {
    color: #003399;
}

.blog-post-tags .tag_9 {
    color: #990000;
}

.blog-post-tags .tag_10 {
    color: #3366CC;
}

.blog-post-tags .tag_11 {
    color: #660033;
}

.blog-post-tags .tag_12 {
    color: #336600;
}

.blog-post-tags .tag_13 {
    color: #663300;
}

.blog-post-tags .tag_14 {
    color: #333300;
}

.blog-post-tags .tag_15 {
    color: #003366;
}

.blog-post-tags .tag_16 {
    color: #006600;
}

.blog-post-tags .tag_17 {
    color: #043B76;
}

.blog-post-tags .tag_18 {
    color: #B64107;
}

.blog-post-tags .tag_19 {
    color: #804D00;
}

.blog-post-tags .tag_20 {
    color: #006666;
}

.blog-post-tags .tag_21 {
    color: #4D4D33;
}

.blog-post-tags .tag_22 {
    color: #4D4D00;
}

.blog-post-tags .tag_23 {
    color: #1A1A00;
}

.blog-post-tags .tag_24 {
    color: #002266;
}

.blog-post-tags .tag_25 {
    color: black;
}

.blog-post-tags .tag_26 {
    color: #660066;
}

.blog-post-tags .tag_27 {
    color: #330066;
}

.blog-post-tags .tag_28 {
    color: #0000CD;
}

.blog-post-tags .tag_29 {
    color: darkgray;
}

#filters_tabs div {
    margin-top: 1em;
}

#include_tags_pane {
    width: 100%;
}

#include_tags_pane h3 {
    padding-bottom: 1em;
}

#include_exclude_tag {
    width: 100%;
}

#include_tags_fields {
    width: 100%;
    padding-bottom: 3px;
    text-align: left;
    white-space: nowrap;
}

#include_tags_fields div span {
    display: inline-block;
    width: 50%;
}

#include_tags_fields label {
    padding-left: 0.6em;
}

#exclude_tags_pane {
    width: 100%;
    padding-bottom: 3px;
    text-align: left;
    white-space: nowrap;
}

#exclude_tags_pane div span {
    display: inline-block;
    width: 50%;
}

#exclude_tags_pane label {
    padding-left: 0.6em;
}

#filters_dialog_close {
    position: absolute;
    top: 15px;
    right: 15px;
    border: none;
    background: white;
    font-size: 1.5em;
}

#feedback_dialog_close {
    position: absolute;
    top: 15px;
    right: 15px;
    border: none;
    background: white;
    font-size: 1.5em;
}

#cookies_dialog_close {
    position: absolute;
    top: 15px;
    right: 15px;
    border: none;
    background: white;
    font-size: 1.5em;
}

@media only screen and (min-width: 860px) {
    body {
        height: 100vh;
        background-image: url("../img/background.jpg");
        background-repeat: no-repeat;
        background-size: cover;
    }

    footer {
        position: absolute;
        bottom: 0;
    }

    #page_body {
        position: relative;
        min-height: 100vh;
    }

    main {
        display: flex;
        justify-content: center;
        align-items: center; 
    }

    #blog_posts_window {
        resize: both;
        overflow: auto;
        width: 75%;
        height: 500px;
        min-width: 500px;
        min-height: 300px;
        margin-top: 80px;
        padding: 10px;
        border: 7px solid #1C6EA4;
        border-radius: 15px;
        border-style: groove;
        text-align: left;
    }

    #blog_posts {
        position: relative;
        height: 100%;
        width: 100%;
        max-width: unset;
        overflow: auto;
    }

    #no_posts_window {
        height: 9rem;
        padding: 10px;
        margin: 80px 20px 0 20px;
        border: 7px solid #1C6EA4;
        border-radius: 25px;
        border-style: groove;
        text-align: left;
    }

    #no_posts_window p {
        display: flex;
        width: 100%;
        height: 100%;
        padding-left: 10px;
        padding-right: 10px;
        justify-content: center;
        align-items: center;
    }

    #fb_button svg {
        margin-top: -8px;
    }

    #tw_button {
        margin-top: 0;
        margin-bottom: 0;
    }

    #tw_button svg {
        margin-top: -8px;
    }
}
