Compare commits

..

No commits in common. "e115ee0194997e8f83c55225bf82d47ab1c439ef" and "a823c7504f320f1532dfdcabd28f6e4e0491fdd6" have entirely different histories.

6 changed files with 7 additions and 8 deletions

View file

@ -49,11 +49,6 @@
.bold { .bold {
font-weight: bold; font-weight: bold;
} }
@font-face {
font-family: 'Roboto-Regular';
src: url('/fonts/roboto/Roboto-Regular.ttf') format('TrueType');
}
</style> </style>
<body data-sveltekit-preload-data="hover"> <body data-sveltekit-preload-data="hover">

View file

@ -98,7 +98,7 @@
flex: 0 1 20%; flex: 0 1 20%;
border-top-right-radius: var(--route-card-radius); border-top-right-radius: var(--route-card-radius);
border-bottom-right-radius: var(--route-card-radius); border-bottom-right-radius: var(--route-card-radius);
background-image: url('/images/test-1.jpg'); background-image: url('../../static/images/test-1.jpg');
background-position: center; background-position: center;
background-size: cover; background-size: cover;
} }

View file

@ -3,7 +3,7 @@
<head> <head>
<meta charset="utf-8"> <meta charset="utf-8">
<link rel="icon" href="/images/home-icon.png"> <link rel="icon" href="/static/images/home-icon.png">
<meta name="viewport" content="width=device-width"> <meta name="viewport" content="width=device-width">
<link rel="manifest" href="/manifest.json"> <link rel="manifest" href="/manifest.json">
<title>Pianello</title> <title>Pianello</title>

View file

@ -46,7 +46,7 @@
flex: 0 1 20%; flex: 0 1 20%;
border-top-right-radius: var(--route-card-radius); border-top-right-radius: var(--route-card-radius);
border-bottom-right-radius: var(--route-card-radius); border-bottom-right-radius: var(--route-card-radius);
background-image: url('/images/test-1.jpg'); background-image: url('../../static/images/test-1.jpg');
background-position: center; background-position: center;
background-size: cover; background-size: cover;
} }

View file

@ -1 +1,5 @@
@font-face {
font-family: 'Roboto-Regular';
src: url('../../static/fonts/roboto/Roboto-Regular.ttf') format('TrueType');
}