/************
* Title: Print stylesheet for document printing
* Author: me@kevinholesh.com
************/

/* Don't display the sidebar, respond box, or the footer when printing an article */
div#sidebar { display: none; }
div#comments div#respond { display: none; }
div#footer { display: none; }

div.post p.introduction { color: #333; } /* Make the intro paragraph more readable */
div.post p, div.post ol, div.post ul, div.post pre { line-height: 1.5em; } /* Increase the lineheight of everything in a post */
div.post h2 { font-size: 4em; } 
div.post h3 { font-size: 2em; }
div.post h3, div.post h4, div.post h5, div.post h6 { margin: 28px 0 7px 0; }
div#single_footer { display: none; } /* Hide the footer on each article page */




/* "Going to print" from A List Apart */
a:link, a:visited { border: 0; color: #520; background: transparent; font-weight: bold; text-decoration: underline; }
div#content a:link:after, div#content a:visited:after { content: " (" attr(href) ") "; font-size: 80%; } /* print out the URL after each link in the text */
