/*
Theme Name: Twenty Sixteen Child
Theme URI: https://gameanalysis.net
Author: Max Rush Lerner
Author URI: https://gameanalysis.net
Template: twentysixteen
Description: Child theme for use with my project
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: one-column, two-columns, right-sidebar, accessibility-ready, custom-background, custom-colors, custom-header, custom-menu, editor-style, featured-images, flexible-header, microformats, post-formats, rtl-language-support, sticky-post, threaded-comments, translation-ready, blog
Text Domain: twentysixteen-child*/

/* I took a look at https://allaboutbasic.com/2016/01/15/wordpress-twenty-sixteen-2016-theme-modifications-change-colors-titles-metassidebar-fontsheaderfooter-menus-etc-using-css/ for some ideas, so thanks to Om Prakash Chowdhury.*/

/* removes empty space at top of page */
#masthead {
    padding-top: 0px !important;
    padding-bottom: 12px !important;
}

.site-inner{
    /* max-width: 1320px;  the base theme's max*/
    max-width: 1700px;
}
/* hides powered by wordpress div */
.site-info{
    visibility: hidden;
}

/* remove post sidebar to give more room, as we plan to increase post width
.entry-footer {
    display:none; !important
}*/
/* increase post width into the space once taken by .entry-footer
.entry-content{
    width: 100% !important
}*/
/*
.content-area #primary{
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    float: none !important;
}*/

/* hide related posts suggestions
.single-post #jp-relatedposts {
display: none !important;
}
*/

/* reduce gap between posts on homepage */
.home article {
margin-bottom: 20px !important;
}

/* remove empty space from single post page */
.site-header {
padding-top: 12px !important;
padding-bottom: 12px !important;
}

/* standard Twenty Sixteen paragraph styling has 1.75 em margin below, which is not good since I often want to closely associate paragraph with a following video */
p {
    margin: 0 0 0.75em;
}
