New color theme

This commit is contained in:
2023-03-20 17:41:42 -04:00
parent 59f201872a
commit ce4d2e27b5
62 changed files with 735 additions and 904 deletions

BIN
src/assets/images/404/` Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 193 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 294 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 71 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 24 KiB

After

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 54 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 52 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 74 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 68 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 94 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 75 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 38 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 35 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 40 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 43 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 759 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 685 KiB

View File

@@ -23,28 +23,6 @@ const onLoad = () => {
setTimeout(() => {
if (!window.Cookies || !window.FontFaceObserver) return;
// Handle Fonts
const fontRaleway = new FontFaceObserver("raleway"),
fontUnbounded = new FontFaceObserver("unbounded");
Promise.all([
fontRaleway.load(null, 5000),
fontUnbounded.load(null, 6000),
])
.then(() => {
if (
document.documentElement.className.indexOf(
"js-hasFontsLoaded"
) == -1
) {
document.documentElement.className +=
" js-hasFontsLoaded";
}
Cookies.set("fonts_loaded", true);
})
.catch((err) => {
console.log("Error!", err);
});
// Lazy-Load Media
if (typeof loadMedia === "function") {
loadMedia(".js-lazyLoader", null, true);

View File

@@ -1,49 +1,49 @@
@font-face {
font-family: "raleway";
src: url("/fonts/raleway/raleway-regular-webfont.woff2") format("woff2"),
url("/fonts/raleway/raleway-regular-webfont.woff") format("woff"),
url("/fonts/raleway/raleway-regular-webfont.ttf") format("truetype"),
url("/fonts/raleway/raleway-regular-webfont.eot");
src: local("Raleway"),
url("/fonts/raleway/raleway-regular-webfont.woff2") format("woff2"),
url("/fonts/raleway/raleway-regular-webfont.woff") format("woff");
font-weight: 400;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: "raleway";
src: url("/fonts/raleway/raleway-italic-webfont.woff2") format("woff2"),
url("/fonts/raleway/raleway-italic-webfont.woff") format("woff"),
url("/fonts/raleway/raleway-italic-webfont.ttf") format("truetype"),
url("/fonts/raleway/raleway-italic-webfont.eot");
font-weight: 400;
font-style: italic;
}
@font-face {
font-family: "raleway";
src: url("/fonts/raleway/raleway-bold-webfont.woff2") format("woff2"),
url("/fonts/raleway/raleway-bold-webfont.woff") format("woff"),
url("/fonts/raleway/raleway-bold-webfont.ttf") format("truetype"),
url("/fonts/raleway/raleway-bold-webfont.eot");
src: local("Raleway Bold"), local("Raleway-Bold"),
url("/fonts/raleway/raleway-bold-webfont.woff2") format("woff2"),
url("/fonts/raleway/raleway-bold-webfont.woff") format("woff");
font-weight: 700;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: "raleway";
src: url("/fonts/raleway/raleway-bolditalic-webfont.woff2") format("woff2"),
url("/fonts/raleway/raleway-bolditalic-webfont.woff") format("woff"),
url("/fonts/raleway/raleway-bolditalic-webfont.ttf") format("truetype"),
url("/fonts/raleway/raleway-bolditalic-webfont.eot");
src: local("Raleway Italic"), local("Raleway-Italic"),
url("/fonts/raleway/raleway-italic-webfont.woff2") format("woff2"),
url("/fonts/raleway/raleway-italic-webfont.woff") format("woff");
font-weight: 400;
font-style: italic;
font-display: swap;
}
@font-face {
font-family: "raleway";
src: local("Raleway Bold Italic"), local("Raleway-BoldItalic"),
url("/fonts/raleway/raleway-bolditalic-webfont.woff2") format("woff2"),
url("/fonts/raleway/raleway-bolditalic-webfont.woff") format("woff");
font-weight: 700;
font-style: italic;
font-display: swap;
}
@font-face {
font-family: "unbounded";
src: url("/fonts/unbounded/unbounded-medium-webfont.woff2") format("woff2"),
url("/fonts/unbounded/unbounded-medium-webfont.woff") format("woff"),
url("/fonts/unbounded/unbounded-medium-webfont.ttf") format("truetype"),
url("/fonts/unbounded/unbounded-medium-webfont.eot");
src: local("Unbounded"),
url("/fonts/unbounded/unbounded-medium-webfont.woff2") format("woff2"),
url("/fonts/unbounded/unbounded-medium-webfont.woff") format("woff");
font-weight: 500;
font-style: normal;
font-display: swap;
}

File diff suppressed because it is too large Load Diff