/* ----------------------------------------------------------------------- Blueprint CSS Framework 0.9 http://blueprintcss.org * Copyright (c) 2007-Present. See LICENSE for more info. * See README for instructions on how to use Blueprint. * For credits and origins, see AUTHORS. * This is a compressed file. See the sources in the 'src' directory. ----------------------------------------------------------------------- */ /* print.css */ body { line-height: 1.5; font-family: "Helvetica Neue", Arial, Helvetica, sans-serif; color: #000; background: none; font-size: 10pt; } .container { background: none; } hr { background: #ccc; color: #ccc; width: 100%; height: 2px; margin: 2em 0; padding: 0; border: none; } hr.space { background: #fff; color: #fff; visibility: hidden; } h1, h2, h3, h4, h5, h6 { font-family: "Helvetica Neue", Arial, "Lucida Grande", sans-serif; } code { font: .9em "Courier New", Monaco, Courier, monospace; } a img { border: none; } p img.top { margin-top: 0; } blockquote { margin: 1.5em; padding: 1em; font-style: italic; font-size: .9em; } .small { font-size: .9em; } .large { font-size: 1.1em; } .quiet { color: #999; } .hide { display: none; } a:link, a:visited { background: transparent; font-weight: 700; text-decoration: underline; } a:link:after, a:visited:after { content: " (" attr(href) ")"; font-size: 90%; } #site-slogan { color: black; font: italic bold 12px Georgia,Times,'Times New Roman',serif; } /* $Id:print.css,v 1.8 2009/11/04 20:16:50 johnalbin Exp $ */ /** * @file * Print styling * * We provide some sane print styling for Drupal using Zen's layout method. */ /* underline all links */ a:link, a:visited { text-decoration: underline !important; } /* Don't underline header */ #site-name a:link, #site-name a:visited { text-decoration: none !important; } /* CSS2 selector to add visible href after links */ #content a:link:after, #content a:visited:after { content: " (" attr(href) ") "; font-size: 0.8em; font-weight: normal; } /* Un-float the content */ #content, #content .section { float: none; width: 100%; margin: 0 !important; padding: 0 !important; } /* Turn off any background colors or images */ body, #page-wrapper, #page, #header-wrapper, #header, #pre-wrapper, #pre, #highlight-wrapper, #highlight, #primary-wrapper, #main-wrapper, #main, #content, #content .section #footer-wrapper { color: #000; background-color: transparent !important; background-image: none !important; } /* Hide sidebars and nav elements */ #skip-to-nav, #header-wrapper, #header, #nav-top, #navigation, #superfish, #primary-wrapper, #pre-wrapper, #pre, #highlight-wrapper, #highlight, .region-sidebar-first, .region-sidebar-second, #sidebar-left, #sidebar-right, #footer, #footer-wrapper, .breadcrumb, div.tabs, .links, .taxonomy, .book-navigation, .forum-topic-navigation, .pager, .feed-icons { visibility: hidden; display: none; } /* If you un-comment the "page { overflow-y: hidden; } " ruleset,Firefox clips the content after the first page. */ #page-wrapper { overflow-y: visible; }