Printing
Jellyfish ships a light @media print block — black text, underlined links with their URL shown, smaller type, a 100%-width container. It's a sensible baseline, not a print-optimised layout.
Hiding elements from print
Three equivalent ways to get display: none inside @media print:
| Form | Use |
|---|---|
| .do-not-print | Add the class in your markup. |
| @extend .do-not-print | Fold an existing selector into the shared rule. |
| @include do-not-print() | Emit a standalone @media print block for one selector. |
.navbar and <iframe> are hidden from print by default.