Sha256: c1cdf9eef083083ffa593dd63190e2bb081a04d4e5abc903b3776edce19e606a
Contents?: true
Size: 841 Bytes
Versions: 66
Compression:
Stored size: 841 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
66 entries across 56 versions & 4 rubygems