From 617c7b384542f6b32c4d5cdfe0e0ced3b6d5b243 Mon Sep 17 00:00:00 2001 From: Benjamin Franzke Date: Sat, 22 Jul 2017 12:59:24 +0200 Subject: Remove svg namespace from html5 output svg namespace is added implicitly to the tags by html5 parsers. (It's actually that the xmlns has no effect for html5 and should theoretically be treated as something has _has_ to be removed during minification) --- style.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'style.css') diff --git a/style.css b/style.css index aeb0be9..0d18e69 100644 --- a/style.css +++ b/style.css @@ -29,7 +29,7 @@ body { body > * { flex: none; width: 100%; - padding: 0 calc(50vw - 32.5em); + padding: 0 calc(50% - 32.5em); } input, textarea { @@ -266,8 +266,8 @@ footer a { @media (max-width: 75em) { body > * { - padding-left: calc(50vw - 31em); - padding-right: calc(50vw - 31em); + padding-left: calc(50% - 31em); + padding-right: calc(50% - 31em); } header .h1 { font-size: 2.8em; -- cgit