summaryrefslogtreecommitdiff
path: root/style.css
diff options
context:
space:
mode:
authorBenjamin Franzke <benjaminfranzke@gmail.com>2017-07-22 12:59:24 +0200
committerBenjamin Franzke <benjaminfranzke@gmail.com>2017-07-22 13:00:33 +0200
commit617c7b384542f6b32c4d5cdfe0e0ced3b6d5b243 (patch)
tree6ea6ec912a057908e8d0946a643a941ccf3b31fa /style.css
parentdd739532b3c17eacea4826e4d64f8fdcdc6c0ee2 (diff)
downloadmutti-web-617c7b384542f6b32c4d5cdfe0e0ced3b6d5b243.tar.gz
mutti-web-617c7b384542f6b32c4d5cdfe0e0ced3b6d5b243.tar.bz2
mutti-web-617c7b384542f6b32c4d5cdfe0e0ced3b6d5b243.zip
Remove svg namespace from html5 output
svg namespace is added implicitly to the <svg> 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)
Diffstat (limited to 'style.css')
-rw-r--r--style.css6
1 files changed, 3 insertions, 3 deletions
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;