/*
Theme Name: Twenty Ten Child
Theme URI: http://nikkel.org/
Description: Modification of Twenty Ten theme to support photography blog
Author: D J Nikkel
Author URI: http://nikkel.org/
Template: twentyten
Version: 0.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: child theme
Text Domain: twenty-ten-child
*/


/* 
 * add support for post-thumbnails to be archive "bullets" -DJN 
 * For posts with thumbnails, move over enough space for 80px thumbnail
 */
.archive-entry-with-thumbnail {
	position: relative;
	padding-left: 100px;
}

.entry-thumbnail {
	position: absolute;
	top:  0;
	left: 0;
}


/*
 * style feature descriptions on home page (CSS flexbox version)
 */
.djnp-features {
	background-color: white;
	padding: 40px 0;
	font-family: sans-serif;
}

.djnp-features-inner {
	max-width: 640px;
	margin: 0 auto;
	display: flex;
	align-items: stretch;
	justify-content: space-between;
}

.djnp-featured-item {
	background-color: white;
	flex-basis: 30%;
}

.djnp-featured-item h3 {
	color: black;
	font-weight: normal;
	margin: 0;
	padding: 0;
}

.djnp-featured-item a {
	text-decoration: none;
}

.djnp-featured-item p {
	margin: 0;
	color: black;
	line-height: 1.2;
}

