/*
Theme Name:     Spun Child
Theme URI:      http://timhwang.org
Description:    Child theme for the Spun theme
Author:         Tim Hwang
Author URI:     http://timhwang.org
Template:       spun                             
Version:        0.1.0
*/

@import url("../spun/style.css");

/* editing the title fonts */
#masthead {
	clear: both;
	display: block;
	min-height: 30px;
	opacity: 1;
	padding: 30px 0;
	position: relative;
	transition: opacity .5s ease-in-out;
	-webkit-transition: opacity .5s ease-in-out;
	-moz-transition: opacity .5s ease-in-out;
	-o-transition: opacity .5s ease-in-out;
	width: 100%;
}
#masthead:hover {
	opacity: 1;
	transition: opacity .5s ease-in-out;
	-webkit-transition: opacity .5s ease-in-out;
	-moz-transition: opacity .5s ease-in-out;
	-o-transition: opacity .5s ease-in-out;
}

.site-title {
	font-family: Baskerville, "Playfair Display", "Times New Roman", serif;
	font-size: 24px;
	font-size: 2.4rem;
	font-style: italic;
	font-weight: normal;
	line-height: 1em;
	margin: 0;
	text-transform: none;
}
.site-title a {
	color: #d6b6e6;
}

/* editing the post styles */

.blog .hentry a .attachment-post-thumbnail,
.archive .hentry a .attachment-post-thumbnail,
.search .hentry a .attachment-post-thumbnail {
	border-radius: 180px;
	filter: grayscale(100%);
	-webkit-filter: grayscale(100%);
	-webkit-filter: grayscale(1); /* Older versions of webkit */
	-moz-filter: grayscale(100%);
	-o-filter: grayscale(100%);
	-ms-filter: grayscale(100%); /* IE 10 */
	filter: gray; /* IE 9 */
	opacity: .8;
	-webkit-opacity: .8;
	-moz-opacity: .8;
	transition: all .3s ease-in-out;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	width: 100%;
	height: 100%;
	z-index: 1;
}
.blog .hentry a:hover img,
.archive .hentry a:hover img,
.search .hentry a:hover img {
	border-radius: 180px;
	filter: none;
	-webkit-filter: none;
	-moz-filter: none;
	-o-filter: none;
	-ms-filter: none;
	opacity: 1;
	-webkit-opacity: 1;
	-moz-opacity: 1;
	transition: all .3s ease-in-out;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	width: 100%;
	height: 100%;
}
.hentry.no-thumbnail {
	background: #eee;
	border-radius: 180px;
	overflow: hidden;
	transition: background .4s ease-in-out;
	-webkit-transition: background .4s ease-in-out;
	-moz-transition: background .4s ease-in-out;
	-o-transition: background .4s ease-in-out;
	word-wrap: break-word;
	width: 180px;
	max-width: 180px;
	height: 180px;
	max-height: 180px;
}
.hentry.no-thumbnail span {
	color: #fafafa;
	display: table-cell;
	font-family: Baskerville, "Playfair Display", "Times New Roman", serif;
	font-size: 32px;
	font-size: 3.2rem;
	font-style: italic;
	line-height: 32px;
	overflow: hidden;
	text-align: center;
	transition: background .4s ease-in-out;
	-webkit-transition: background .4s ease-in-out;
	-moz-transition: background .4s ease-in-out;
	-o-transition: background .4s ease-in-out;
	-ms-transition: background .4s ease-in-out;
	vertical-align: middle;
	word-wrap: break-word;
	width: 180px;
	height: 180px;
}
.hentry.no-thumbnail:hover {
	background: #444;
	color: #fff;
	transition: background .4s ease-in-out;
	-webkit-transition: background .4s ease-in-out;
	-moz-transition: background .4s ease-in-out;
	-o-transition: background .4s ease-in-out;
	-ms-transition: background .4s ease-in-out;
}

/* editing the link color */
a:hover,
a:focus,
a:active {
	color: #d6b6e6;
	text-decoration: none;
	transition: all .4s ease-in-out;
	-webkit-transition: all .4s ease-in-out;
	-moz-transition: all .4s ease-in-out;
	-o-transition: all .4s ease-in-out;
}