Sha256: c322df3061481e0a2137dca31feb04f0b0437486f47cf392e3c996e8186db5b1

Contents?: true

Size: 874 Bytes

Versions: 2

Compression:

Stored size: 874 Bytes

Contents

/* Welcome to Susy. Use this file to define print styles.
 * Import this file using the following HTML or equivalent:
 * <link href="/stylesheets/print.css" media="print" rel="stylesheet" type="text/css" /> */

// Imports --------------------------------------------------------------*/

@import "defaults";

/* Print Defaults --------------------------------------------------------------*/

@mixin print {
  nav {
    // no need to navigate on paper
    display: none; 
  }
  * {
    // floated elements disappear when they overflow the page
    float: none !important; 
    background: none;
  }
  body {
    @include serif-family;
    font-size: 12pt;
    background: white;
    color: black; 
  }
  a:link:after, a:visited:after {
    // print target URLs next to their links
    content: " (" attr(href) ") "; 
  } 
}

@include print;

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
staticmatic3-2.1.10 website/src/stylesheets/print.scss
staticmatic3-2.1.9 website/src/stylesheets/print.scss