remove unnecessary items when print
blog.elementary.io - print friendly by wgjtyu
Details
Authorwgjtyu
LicenseNo License
Categoryblog.elementary.io
Created
Updated
Size482 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name blog.elementary.io - print friendly
@version 20240504.07.28
@namespace ?
==/UserStyle== */
@-moz-document domain("blog.elementary.io") {
@media print {
:root {
--page-width: 100%;
--content-width: 100%;
}
body > header:nth-child(1),
body > footer:nth-child(3),
body > section > article > div,
body > section > div,
body > section > a,
body > section > h2 {
display: none !important;
}
}
}