weix.us

Snippets

 1@media print {
 2    .no-print, header, footer {
 3        display: none !important;
 4    }
 5
 6    body {
 7        font-size: 1em;
 8        color: #000;
 9        background-color: none !important;
10    }
11
12    main {
13        width: 100%;
14    }
15    
16    /* print out links */
17    a[href]:after {
18        content: '(' attr(href) ')';
19    }
20}

Updated by Elliott Weix.