summaryrefslogtreecommitdiff
path: root/src/style.css
diff options
context:
space:
mode:
authorLuke Smith <luke@lukesmith.xyz>2021-03-11 09:00:19 -0500
committerGitHub <noreply@github.com>2021-03-11 09:00:19 -0500
commitb4b1816e43dc4195b3cf53b352413af980dc2dce (patch)
tree8d8e4d6f6be690f962cf96aad04d269ee7e042e3 /src/style.css
parent09daa54c0f5c305ce16220051ebe39f0cc79847b (diff)
parent414f8bffa1a3ca3c78fda85d69d214bee501a338 (diff)
Merge pull request #54 from Wasby/patch-1
Remove hyperlinks when printing
Diffstat (limited to 'src/style.css')
-rw-r--r--src/style.css7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/style.css b/src/style.css
index d546860..a6961f3 100644
--- a/src/style.css
+++ b/src/style.css
@@ -34,3 +34,10 @@ img {
color: tomato ;
}
}
+
+@media print {
+ a[href] {
+ text-decoration: none ;
+ color: black ;
+ }
+}