Merge pull request #3 from quatalog/main

Fix CSS 404
This commit is contained in:
powe97 2023-02-10 00:04:05 -05:00 committed by GitHub
commit 2f236cabc5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 13 additions and 13 deletions

View file

@ -150,49 +150,49 @@ YP `Y88P' VP V8P YP `8888Y'
@font-face{
font-family: "rivalsans";
src: url("./fonts/rivalsans-regular.otf");
src: url("../fonts/rivalsans-regular.otf");
}
@font-face{
font-family: "rivalsans";
src: url("./fonts/rivalsans-bold.otf");
src: url("../fonts/rivalsans-bold.otf");
font-weight: 700;
}
@font-face{
font-family: "rivalsans";
src: url("./fonts/rivalsans-extrabold.otf");
src: url("../fonts/rivalsans-extrabold.otf");
font-weight: 800;
}
@font-face{
font-family: "rivalsans";
src: url("./fonts/rivalsans-black.otf");
src: url("../fonts/rivalsans-black.otf");
font-weight: 900;
}
@font-face {
font-family: "proxima-nova";
src: url("./fonts/Proxima-Nova-Black.otf");
src: url("../fonts/Proxima-Nova-Black.otf");
font-weight: 900;
}
@font-face {
font-family: "proxima-nova";
src: url("./fonts/Proxima-Nova-Bold.otf");
src: url("../fonts/Proxima-Nova-Bold.otf");
font-weight: 700;
}
@font-face {
font-family: "proxima-nova";
src: url("./fonts/Proxima-Nova-Extrabold.otf");
src: url("../fonts/Proxima-Nova-Extrabold.otf");
font-weight: 800;
}
@font-face {
font-family: "proxima-nova";
src: url("./fonts/Proxima-Nova-Thin.otf");
src: url("../fonts/Proxima-Nova-Thin.otf");
font-weight: 200;
}
@font-face {
font-family: "proxima-nova";
src: url("./fonts/Proxima-Nova-Regular.otf");
src: url("../fonts/Proxima-Nova-Regular.otf");
}

View file

@ -344,19 +344,19 @@ input[value="detailed"]:checked ~ div #detail-view-label {
}
input[value="simple"]:checked ~ table .not-offered {
background-image: url(./icons.svg#circle-no-view);
background-image: url(../icons.svg#circle-no-view);
}
input[value="simple"]:checked ~ table .offered {
background-image: url(./icons.svg#circle-check-view);
background-image: url(../icons.svg#circle-check-view);
}
input[value="simple"]:checked ~ table .offered-diff-code {
background-image: url(./icons.svg#circle-question-view);
background-image: url(../icons.svg#circle-question-view);
}
input[value="simple"]:checked ~ table .unscheduled {
background-image: url(./icons.svg#circle-empty-view);
background-image: url(../icons.svg#circle-empty-view);
}
input[value="detailed"]:checked ~ table .detail-view-container {