summaryrefslogtreecommitdiffstats
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
parent09daa54c0f5c305ce16220051ebe39f0cc79847b (diff)
parent414f8bffa1a3ca3c78fda85d69d214bee501a338 (diff)
downloadbased.cooking-b4b1816e43dc4195b3cf53b352413af980dc2dce.tar
based.cooking-b4b1816e43dc4195b3cf53b352413af980dc2dce.tar.gz
based.cooking-b4b1816e43dc4195b3cf53b352413af980dc2dce.tar.lz
based.cooking-b4b1816e43dc4195b3cf53b352413af980dc2dce.tar.xz
based.cooking-b4b1816e43dc4195b3cf53b352413af980dc2dce.zip
Merge pull request #54 from Wasby/patch-1
Remove hyperlinks when printing
-rw-r--r--src/style.css7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/style.css b/src/style.css
index d546860e5..a6961f3a6 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 ;
+ }
+}