0
mirror of https://github.com/valentineus/popov.link.git synced 2025-06-06 01:54:38 +03:00

Improved printing styles: adding backgrounds and text colors, customizing tables and links

This commit is contained in:
Valentin Popov 2025-01-23 22:47:57 +00:00
parent 849d637880
commit 0cbdbbad7f
Signed by: Valentin Popov
GPG Key ID: AE3CE523DAAA8401

View File

@ -1,5 +1,7 @@
@media print {
body {
background: #fff;
color: #000;
padding: 0;
}
@ -18,4 +20,25 @@
img {
max-width: 500px;
}
* {
background: none;
border-color: #000;
color: #000;
}
a {
color: #000;
text-decoration: underline;
}
table {
border: 1px solid #000;
}
th,
td {
background: none;
border: 1px solid #000;
}
}