From e70ec3ad958e667f562fdad5c45e48792873bcca Mon Sep 17 00:00:00 2001 From: Mike Rockwell Date: Thu, 31 Jul 2025 14:30:39 -0400 Subject: [PATCH] Simplified styles in print.css, removed background color, custom text colors, and elements that are unnecessary when printing. --- css/print.css | 63 ++++++++++++++++----------------------------------- 1 file changed, 19 insertions(+), 44 deletions(-) diff --git a/css/print.css b/css/print.css index ce7f8cb..959bc3b 100644 --- a/css/print.css +++ b/css/print.css @@ -1,65 +1,40 @@ +html { + background-color:unset; +} + body { - color: #f8f9f2; + font-size: 14px; + color: black; } a { - color: #00eb39; + color: #0000EE ; + text-decoration: underline; } -.callout a { - color: #f8f9f2; -} - -footer p { - color: #838c95; -} - -header { +header, .divider, #contact-button, #portfolio img, #contact form, footer { display: none; } .bio:before { content: 'Mike Rockwell'; - font-weight: 400; - display: block; - font-size: 1.17em; - margin-block-start: 1em; + display: block; + font-size: 1.17rem; + margin-block-start: 1em; margin-block-end: 1em; margin-inline-start: 0px; margin-inline-end: 0px; - font-weight: bold; + font-weight: bold; unicode-bidi: isolate; } -#contact-button { - display: none; -} - -.divider { - display: none; -} - -#portfolio:before { - content: 'Projects'; - font-weight: 400; - display: block; - font-size: 1.17em; - margin-block-start: 1em; - margin-block-end: 1em; - margin-inline-start: 0px; - margin-inline-end: 0px; - font-weight: bold; - unicode-bidi: isolate; -} - -#portfolio img { - display: none; +.bio, #contact { + max-width: unset; } #contact p:after { - content: ' mike@rockwell.mx'; -} - -#contact form { - display: none; + content: 'mike@rockwell.mx'; + color: #0000EE; + text-decoration: underline; + margin-left: 4px; } \ No newline at end of file