From 0fd7a2394da322d37f03c15e1ec23827f7700091 Mon Sep 17 00:00:00 2001 From: Marvin Kubiak Date: Wed, 10 Mar 2021 23:56:14 +0100 Subject: added litte bit of padding, so the type doesn't touch the browser's frame --- src/style.css | 1 + 1 file changed, 1 insertion(+) (limited to 'src/style.css') diff --git a/src/style.css b/src/style.css index 5ce9612..d546860 100644 --- a/src/style.css +++ b/src/style.css @@ -1,6 +1,7 @@ body { max-width: 800px ; margin: auto ; + padding: 0 16px ; margin-bottom: 500px ; } -- cgit v1.2.3 From 414f8bffa1a3ca3c78fda85d69d214bee501a338 Mon Sep 17 00:00:00 2001 From: Aiden Gall Date: Thu, 11 Mar 2021 10:49:58 +0000 Subject: Remove hyperlinks when printing --- src/style.css | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'src/style.css') 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 ; + } +} -- cgit v1.2.3