Sha256: d061f1ca2521ceb54301277b5a95bd96da99b9bb986ea12c995c7229e59408bc

Contents?: true

Size: 1.41 KB

Versions: 14

Compression:

Stored size: 1.41 KB

Contents

// PRINT STYLES

// Based heavily on the work of:
// Paul Irish & Divya Manian: http://html5boilerplate.com/
// And many others, less directly...

// Print Defaults --------------------------------------------------------------
@media print {
  * {
    background: transparent !important;
    color: $black !important;
    text-shadow: none !important;
    filter: none !important;
    -ms-filter: none !important;
  }
  // Black prints faster: h5bp.com/s
  body {
    font-family: $font-serifs !important;
    font-size: 12pt !important;
  }
  #{headers(all)} {
    font-family: $font-serifs !important;
  }
  a {
    text-decoration: underline;
    border-bottom: none !important;
    &:visited {
      text-decoration: underline;
    }
    &[href]:after {
      content: " (" attr(href) ")";
    }
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  .ir a:after {
    content: "";
  }
  a {
    &[href^="javascript:"]:after, &[href^="#"]:after {
      content: "";
    }
  }
  // Don't show links for images, or Javascript/internal links
  pre, blockquote {
    border: 1px solid #999999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  // h5bp.com/t
  tr {
    page-break-inside: avoid;
  }
  img {
    page-break-inside: avoid;
    max-width: 100% !important;
  }
  @page {
    margin: 0.5cm;
  }

  p, h2, h3 {
    orphans: 3;
    widows: 3;
  }
  h2, h3 {
    page-break-after: avoid;
  }
}

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
survivalkit-1.0.beta.15 templates/shared/partials/07-media/_print.scss
survivalkit-1.0.beta.14 templates/shared/partials/07-media/_print.scss
survivalkit-1.0.beta.13 templates/shared/partials/07-media/_print.scss
survivalkit-1.0.beta.12 templates/shared/partials/07-media/_print.scss
survivalkit-1.0.beta.11 templates/shared/partials/07-media/_print.scss
survivalkit-1.0.beta.10 templates/shared/partials/08-media/_print.scss
survivalkit-1.0.beta.9 templates/shared/partials/08-media/_print.scss
survivalkit-1.0.beta.8 templates/shared/partials/08-media/_print.scss
survivalkit-1.0.beta.7 templates/shared/partials/08-media/_print.scss
survivalkit-1.0.beta.6 templates/shared/partials/08-media/_print.scss
survivalkit-1.0.beta.5 templates/shared/partials/08-media/_print.scss
survivalkit-1.0.beta.4 templates/shared/partials/08-media/_print.scss
survivalkit-1.0.beta.3 templates/shared/partials/08-media/_print.scss
survivalkit-1.0.beta.2 templates/shared/partials/08-media/_print.scss