/*
 Theme Name:     Twenty Twelve Child
 Theme URI:      http://amybensonlacey.com/wp-content/themes/twenty-twelve-child/
 Description:    Twenty Twelve Child Theme
 Author:         Paul Lacey
 Author URI:     http://amybensonlacey.com
 Template:       twentytwelve
 Version:        3.9.1
*/

@import url("../twentytwelve/style.css");

/* =Theme customization starts here
-------------------------------------------------------------- */
/* Header */
.site-header {
	padding: 5px 0 0 0;
	padding: 0.357142857rem 0 0 0;
	margin-bottom: 5px;
	margin-bottom: 0.357142857rem;
}
.site-content {
	margin: 5px 0 0;
	margin: 0.357142857rem 0 0;
}
.entry-header {
	/*
	margin-top: 5px;
	margin-top: 0.357142857rem;
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
	*/
	margin: 5px 0 0;
	margin: 0.357142857rem 0 0;
}
.entry-content h1,
.comment-content h1,
.entry-content h2,
.comment-content h2,
.entry-content h3,
.comment-content h3,
.entry-content h4,
.comment-content h4,
.entry-content h5,
.comment-content h5,
.entry-content h6,
.comment-content h6 {
	margin: 5px 0 24px;
	margin: 0.357142857rem 0 1.714285714rem;
	line-height: 1.714285714;
}
.wp-playlist-item-album {
  display: none !important;
  color:red !important;
}

/* WP 3.6 Native Audio Player styling
**The Player's css (/wp-includes/js/mediaelement/wp-mediaelement.css?ver=3.9.1) 
**is loaded at the bottom of the page, so it takes precedence over
**anything loaded in the standard child style.css. I've moved all of the player styling
**to its own css file "abl-wp-audio-player.css.  I've then included an @import directive
**within the player's css to load this abl-wp-audio-player.css file. I may need to re-add 
**this @import any time the default WP audio player css gets upgraded.
*/


/* =Notes
--------------------------------------------------------------
This stylesheet uses rem values with a pixel fallback. The rem
values (and line heights) are calculated using two variables:

$rembase:     14;
$line-height: 24;

---------- Examples

* Use a pixel value with a rem fallback for font-size, padding, margins, etc.
	padding: 5px 0;
	padding: 0.357142857rem 0; (5 / $rembase)

* Set a font-size and then set a line-height based on the font-size
	font-size: 16px
	font-size: 1.142857143rem; (16 / $rembase)
	line-height: 1.5; ($line-height / 16)

---------- Vertical spacing

Vertical spacing between most elements should use 24px or 48px
to maintain vertical rhythm:

.my-new-div {
	margin: 24px 0;
	margin: 1.714285714rem 0; ( 24 / $rembase )
}

---------- Further reading

http://snook.ca/archives/html_and_css/font-size-with-rem
http://blog.typekit.com/2011/11/09/type-study-sizing-the-legible-letter/


/* =Reset
-------------------------------------------------------------- */