/*
Theme Name: Maximum Twenty Fourteen
Template: twentyfourteen
*/
@import url("../twentyfourteen/style.css");
/* Theme customization starts here */

/* Hide featured image above post title — only works in blog, not single post */
a.post-thumbnail {
display: none;
} 

/*hides featured image in single post view*/
.single .post-thumbnail img {
        display: none;
}

/* Hide tags under posts (mainly to get rid of "featured" tag)*/
.tag-links {
display: none;
}

/* Hide categories everywhere 
.cat-links, .entry-meta .entry-date, .entry-meta .byline {
display: none;
}*/

/* Turn hyphenization off in posts */
p {
  -moz-hyphens: none;
  -ms-hyphens: none;
  -webkit-hyphens: none;
  hyphens: none;
}

/* Trying to turn hyphenization off in other places. Did this work? If not, delete. */
.nav-links {
	-webkit-hyphens: none;
	-moz-hyphens:    none;
	-ms-hyphens:     none;
	hyphens:         none;
	word-wrap: break-word;
}

.widget {
	font-size: 14px;
	-webkit-hyphens: none;
	-moz-hyphens:    none;
	-ms-hyphens:     none;
	hyphens:         none;
}

/* Modifying rule above post, adding rule above to featured posts */

	.list-view .site-content .hentry, 
	.list-view .site-content .hentry.has-post-thumbnail {
		border-top: 10px solid rgba(0, 0, 0, 0.1);
		padding-top: 30px;
	}
	
/* Put space between items in numbered lists */

li {
	margin: 0 0 10px 0;
}