/*
 Theme Name:     Twenty Sixteen Child Theme
 Theme URI:      https://hyperlinkcode.com/blog/twenty-sixteen-child-theme/
 Description:    A bare-bones child theme for use with Twenty Sixteen Theme.
 Author:         Ed Zivkovic
 Author URI:     https://ezau.com
 Template:       twentysixteen
 Version:        1.0.0
*/

/*

Top 10 Resources for CSS Properties: https://hyperlinkcode.com/blog/css-properties/ 

*/

/* Add Custom CSS after this line */

/* ----------------------------------------------
/* Reposition header image DC added Nov 12 2017 */
/* from gist.github.com  */
@media screen and (max-width: 1240px) {
    .site-header {
        padding: 0 7.6923% 2.625em;
    }

    .header-image {
        margin: 0 -9.1% 0.875em
    }
}

@media screen and (min-width: 1240px) {
    .site-header {
        padding: 1em 4.5455% 5.25em;
    }
}


.site-branding {
    margin: 0 auto 0.875em 0;
    overflow: visible;
}

.header-image {
    position: relative;
}

a.custom-logo-link {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
/* ---------------------------------------------------------------


/* trying to remove slash after site name ?? */
site-footer .site-title:after {
	content: "&nbsp;";
	display: inline-block;
	font-family: Montserrat, sans-serif;
	opacity: 0.7;
	padding: 0 0.307692308em 0 0.538461538em;
font-size: 40px;
}

/* add padding to right of top menu */
.site-header-menu {
/*	margin-top: 1.75em;
	margin-bottom: 1.75em; */
	margin-right: 1.0em;
	} 

/* do not transform headers to upper case */
.entry-content h4,
.entry-summary h4,
.comment-content h4,
.textwidget h4 {
	letter-spacing: 0.06em;
    line-height: 1.5em;
	text-transform: none;
}

/* do not put underlines on text widget links */
.entry-content a,
.entry-summary a,
.taxonomy-description a,
.logged-in-as a,
.comment-content a,
.pingback .comment-body > a,
.textwidget a,
.entry-footer a:hover,
.site-info a:hover {
	box-shadow: 0 0 0 0 currentColor;
}
/*-- Header links on topics page are green not red -- */
h2.entry-title a {
	color:#2c6914;
}
/* --------------------------------------------------------------------- */
/* the following changes are taken from allaboutbasic.com 2016 modifications */
/* remove the Category and tags showing on the left of the post */
.single-post .entry-footer {
display: none;
}
.single-post .entry-content {
width: 100% !important;
}

/* remove space from above the Site Title */
#masthead {
padding-top: 0px !important;
padding-bottom: 12px !important;
}

/* change sidebar widget’s top border color and spacing */
.widget {
border-top: 2px solid black !important;
margin-bottom: 12px !important;
padding-top: 12px !important;
}
/* --------------------------------------------------------------------- */

p {
	margin: 0 0 1em;
}

/* reduce the size of the top page header */
header.entryheader {
	font-size: .8rem;
}

.entry-content h4 {
    margin-top: .1em;
	margin-bottom: .1em;
}

.post-navigation {
	display: none;
}

/* --- make links in photo captions gray not red -------*/
.wp-caption .wp-caption-text a {
          color: #686868;
}
.figcaption a {
          color: #686868;
}