Files
mattrbld/css/print.css

24 lines
255 B
CSS
Raw Normal View History

2026-05-13 17:00:38 -07:00
/* Print media */
@media print {
header,
footer,
nav {
display: none;
}
body {
background-color: #fff;
width: 95vw;
}
body,
h1, h2, h3, h4, h5,
a {
color: #000;
}
a::after {
content: " (" attr(href) ")";
}
}