/*
 Theme Name:   Coporlio Child
 Theme URI:    -
 Description:  Coporlio Child Theme
 Author:       Aaron Povolish
 Author URI:   http://takeontheneslibrary.com
 Template:     coporlio
 Version:      1.0.0
 License:      
 License URI:  
 Tags:         
 Text Domain:
*/

/* Import font */
@font-face {
    font-family: 'press_start_2pregular';
    src: url('pressstart2p-webfont.eot');
    src: url('pressstart2p-webfont.eot?#iefix') format('embedded-opentype'),
         url('pressstart2p-webfont.woff2') format('woff2'),
         url('pressstart2p-webfont.woff') format('woff'),
         url('pressstart2p-webfont.ttf') format('truetype'),
         url('pressstart2p-webfont.svg#press_start_2pregular') format('svg');
    font-weight: normal;
    font-style: normal;

}

/* Set all headers to use PressStart2P font */
/* Original sizes: 30, 25, 20, 18, 16, 16 */
h1, h2, h3, h4, h5, h6 {
    font-family: press_start_2pregular, Sigmar One;
}

/* Set up logo wrapper for overlays */
div.logo-wrapper {	
	position: relative;
}	

/* Gray out the header image */
div.logo-wrapper img {
	/* IE 8 */
	-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
	/* IE 5-7 */
	filter: alpha(opacity=40);
	/* Modern browsers */
	opacity: 0.4;
}

/* Site Text overlay on image */
div.logo-overlay {
	width: 100%;
	position: absolute;
	top: 50%;
	-ms-transform: translateY(-50%);	/* IE 9 */
	-webkit-transform: translateY(-50%);	/* Chrome, Safari, Opera */
	transform: translateY(-50%);
	left: 0;
	z-index: 10;
}

/* Font styling for site text */
div.logo-overlay h1,
div.logo-overlay h2,
div.logo-overlay h3,
div.logo-overlay h4,
div.logo-overlay h5,
div.logo-overlay h6 {
	color: #0F0F0F;
	text-shadow: 2px 2px 4px #FFFFFF;
}

/* Set margins on header and tagline to properly center */
div.logo-overlay h1 {
	margin-bottom: 5px;
}

div.logo-overlay h5 {
	margin-bottom: 0px;
}


/* Hyperlink over top of entire logo wrapper */
div.logo-wrapper a.logo-link {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	text-decoration: none;
	z-index: 20;
	background-color: #FFF
	opacity: 0;
	filter: alpha(opacity=1);
	color: #FFFFFF;
}

/* Add "Nintendo" border to menu */
div.navigation-wrapper {
	font-family: press_start_2pregular, Sigmar One;
	font-weight: bold;
	border: 10px solid #FE0016;
	padding: 0px;
	-moz-border-radius: 40px;
	-webkit-border-radius: 40px;
	border-radius: 40px; /* future proofing */
	-khtml-border-radius: 40px; /* for old Konqueror browsers */
}

/* Recent Posts Container */
div.recent-post-container {
	margin: 0px 10px;
}

/* Recent posts list */
ul.recent-post-list {
	list-style-type: none;
	margin: 0;
	padding: 0;
	width: 100%;
}

/* Each recent post */
li.recent-post {
	display: inline-block;
	width: 33.333%;
}

/* Individual post container */
div.recent-post-holder {
	position: relative;
	margin: 6px;
}

/* Post image */
li.recent-post img {
	max-width: 100%;
	max-height: 100%;
	opacity: 1;
}

/* Fade image on hover */
a.recent-post-link:hover {
	/* opacity: 0.5; */
}

/* Post hyperlink over image */
a.recent-post-link {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	text-decoration: none;
	z-index: 10;
	background-color: #FFF
	opacity: 0;
	filter: alpha(opacity=1);
	color: #FFFFFF;
	margin-bottom: -5px;
}

/* Add space before the main content */
div.row {
	margin-top: 15px;
}

/* Some styling for the main content */
div.content-wrapper.container {
    padding-top: 15px;
    overflow: hidden;
    background: #FFFFFF;
    margin-top: 20px;
	margin-bottom: 20px;
    box-shadow: 2px 2px 5px #999;
	line-height: 1.8;
}

/* Reduce default margin for blog post block */
div.blog-item-holder .gdl-blog-full {
	margin-bottom: 10px;
}

/* Styling for left column on blog posts */
div.gdl-blog-full .blog-left-column {
	float: left;
/*	min-width: 10%;
	max-width: 30%; */
}

/* Styling for date display */
div.gdl-blog-full .blog-date-wrapper {
	float: none;	/* let container float instead */
	border: 5px solid #FE0016;
	-moz-border-radius: 15px;
	-webkit-border-radius: 15px;
	border-radius: 15px; /* future proofing */
	-khtml-border-radius: 15px; /* for old Konqueror browsers */
}

/* Adjust font size for month and year */
div.gdl-blog-full .blog-month-value, div.gdl-blog-full .blog-year-value {
	font-size: 14px;
	font-weight: bold;
}

/* Comment link bubble */
div.gdl-blog-full .blog-comment-wrapper {
	background-color: #FE0016;
	width: 70px;
	font-family: press_start_2pregular, Sigmar One;
	font-size: 16px;
	color: #FFFFFF;
	text-align: center;
	margin-top: 10px;
	margin-bottom: 25px;
	padding-top: 4px;
	line-height: 2.5;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px; /* future proofing */
	-khtml-border-radius: 10px; /* for old Konqueror browsers */
	position: relative;

}

/* Comment bubble tail */
div.gdl-blog-full .blog-comment-wrapper::after {
	border-color: #FE0016 transparent;
	border-style: solid;
	border-width: 15px 0 0 15px;
	content: "";
	display: block;
	position: absolute;
	left: 27px;
	bottom: -14px;
	width: 0;
}

/* Comment hyperlink */
div.gdl-blog-full .blog-comment-wrapper a {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	text-decoration: none;
	z-index: 10;
	background-color: #FFF
	opacity: 0;
	filter: alpha(opacity=1);
	color: #FFFFFF;
}

/* Comment link to fill bubble */
div.gdl-blog-full .blog-comment-wrapper .blog-comment-link {
	width: 100%;
	height: 100%;
}

/* Blog content to wrap around left column */
div.gdl-blog-full .blog-content-wrapper {
	display: inline;
}

/* First image needs to have reduced width to fit next to date/comment */
div.gdl-blog-full .blog-content-wrapper .blog-media-wrapper img:first-child {
	width: 85%;
}

/* Smaller screens need smaller width */
@media all and (max-width: 767px) {
	div.gdl-blog-full .blog-content-wrapper .blog-media-wrapper img:first-child {
		width: 70%;
	}
}




/* Blog post header */
div.gdl-blog-full .blog-title {
	font-size: 16px;
}

/* Hide default author/comment link section */
div.blog-info-wrapper {
	display: none;
}

/* Spacer between blog posts */
div.blog-post-spacer {
	border-top: 1px solid #FE0016;
}

/* Posted In Category display */
div.blog-category {
	margin-bottom: 20px;
}

/* Previous post link */
div.blog-navigation div.blog-navigation-prev {
	float: left;
}

/* Next post link */
div.blog-navigation div.blog-navigation-next {
	float: right;
}


/* Header on comment section */
div.comment-wrapper .comment-title {
	font-family: press_start_2pregular, Sigmar One;
	font-size: 16px;
	color: #0F0F0F;
}

/* Leave a Reply */
div.comment-wrapper #reply-title {
	font-size: 16px;
}

/* Add spacing underneath posting a comment */
p.form-submit {
	margin-bottom: 60px;
}

/* Search Not Found */
div.message-box-wrapper.red {
	background-color: #FE0016;
    border-color: #FE0016;
    color: #FFFFFF;
}

div.message-box-wrapper.red .message-box-title {
    color: #FFFFFF;
	font-family: press_start_2pregular, Sigmar One;
	font-size: 16px;
	font-weight: bold;
}

ol.game-list li {
	margin-bottom: 5px;
}

/* Hide dates played */
ol.game-list span.date {
	display: none;
}



