From 247e91ab974776343bd9d08c66300901fa892342 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20Stra=C3=9Fburger?= Date: Mon, 5 Dec 2016 16:57:10 +0100 Subject: [PATCH] :art: making index.css paths relative --- public/resources/index.css | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/public/resources/index.css b/public/resources/index.css index 4392232..e9238d1 100644 --- a/public/resources/index.css +++ b/public/resources/index.css @@ -1,18 +1,18 @@ @font-face { font-family: 'OpenSans'; - src: url('/fonts/OpenSans-Regular.ttf'); + src: url('fonts/OpenSans-Regular.ttf'); font-weight: normal; font-style: normal; } @font-face { font-family: 'OpenSans'; - src: url('/fonts/OpenSans-Italic.ttf'); + src: url('fonts/OpenSans-Italic.ttf'); font-weight: normal; font-style: italic; } @font-face { font-family: 'OpenSans'; - src: url('/fonts/OpenSans-Bold.ttf'); + src: url('fonts/OpenSans-Bold.ttf'); font-weight: bold; font-style: normal; } @@ -149,21 +149,21 @@ footer a { body { background-repeat:no-repeat !important; background-size: contain !important; - background-image: url(/images/header-map-640px.png); + background-image: url(images/header-map-640px.png); } @media only screen and (min-width: 641px) { body { - background-image: url(/images/header-map-1280px.png); + background-image: url(images/header-map-1280px.png); } } @media only screen and (min-width: 1281px) { body { - background-image: url(/images/header-map-1600px.png); + background-image: url(images/header-map-1600px.png); } } @media only screen and (min-width: 1601px) { body { - background-image: url(/images/header-map-2560px.png); + background-image: url(images/header-map-2560px.png); } } @@ -209,4 +209,4 @@ body { .btn:first-child{ padding: 0 20px; } -} \ No newline at end of file +}