Sha256: 1fb58c3195ac8014e7412f9a00011355e8c5c069293251fc28e732f33314b4d5

Contents?: true

Size: 658 Bytes

Versions: 1

Compression:

Stored size: 658 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" /> */

@import "defaults";

@mixin print {
  nav {
    // no need to navigate on paper
    display: none; 
  }
  * {
    // floated elements disappear when they overflow the page
    float: none !important; 
  }
  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

1 entries across 1 versions & 1 rubygems

Version Path
compass-susy-plugin-0.7.0.pre8 templates/project/print.scss