fix: use relative URLs in CSS (#1319)
Signed-off-by: Aarni Koskela <akx@iki.fi>
This commit is contained in:
parent
4b7628d0ab
commit
e783526ae1
1 changed files with 4 additions and 4 deletions
|
@ -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;
|
||||
}
|
||||
|
@ -25,7 +25,7 @@ body {
|
|||
margin: 0;
|
||||
background-repeat: no-repeat !important;
|
||||
background-size: contain !important;
|
||||
background-image: url(/images/header-map-1280px.png);
|
||||
background-image: url(./images/header-map-1280px.png);
|
||||
}
|
||||
a {
|
||||
color: #499dce;
|
||||
|
|
Loading…
Reference in a new issue