Compare commits

...

2 Commits

Author SHA1 Message Date
Soper Aylamo 69cc6e203c
404 page now has monospace font 2021-10-22 02:16:40 -04:00
Soper Aylamo 57c7d0ad65
Changing default font to Ubuntu 2021-10-22 02:15:56 -04:00
19 changed files with 83 additions and 2 deletions

View File

@ -1,3 +1,7 @@
/* You can add custom styles here. */ /* You can add custom styles here. */
// @import "plugins/numbered"; // @import "plugins/numbered";
//Uncomment the following if local fonts will not load
//@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
//@import url('https://fonts.googleapis.com/css2?family=Ubuntu+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap');

View File

@ -38,12 +38,88 @@
src: local('Roboto Mono'), local('RobotoMono-Regular'), src: local('Roboto Mono'), local('RobotoMono-Regular'),
url('fonts/roboto-mono-v6-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ url('fonts/roboto-mono-v6-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
url('fonts/roboto-mono-v6-latin-regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ url('fonts/roboto-mono-v6-latin-regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
/* UBUNTU; LOADED BY SOPER */
/* Regular */
@font-face {
font-family: 'Ubuntu';
src: url('fonts/Ubuntu-Bold.woff2') format('woff2'),
url('fonts/Ubuntu-Bold.woff') format('woff');
font-weight: bold;
font-style: normal;
font-display: swap;
} }
@font-face {
font-family: 'Ubuntu';
src: url('fonts/Ubuntu-Italic.woff2') format('woff2'),
url('fonts/Ubuntu-Italic.woff') format('woff');
font-weight: normal;
font-style: italic;
font-display: swap;
}
@font-face {
font-family: 'Ubuntu';
src: url('fonts/Ubuntu-BoldItalic.woff2') format('woff2'),
url('fonts/Ubuntu-BoldItalic.woff') format('woff');
font-weight: bold;
font-style: italic;
font-display: swap;
}
@font-face {
font-family: 'Ubuntu';
src: url('fonts/Ubuntu.woff2') format('woff2'),
url('fonts/Ubuntu.woff') format('woff');
font-weight: normal;
font-style: normal;
font-display: swap;
}
/* Mono */
@font-face {
font-family: 'Ubuntu Mono';
src: url('fonts/UbuntuMono-Bold.woff2') format('woff2'),
url('fonts/UbuntuMono-Bold.woff') format('woff');
font-weight: bold;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: 'Ubuntu Mono';
src: url('fonts/UbuntuMono-BoldItalic.woff2') format('woff2'),
url('fonts/UbuntuMono-BoldItalic.woff') format('woff');
font-weight: bold;
font-style: italic;
font-display: swap;
}
@font-face {
font-family: 'Ubuntu Mono';
src: url('fonts/UbuntuMono-Regular.woff2') format('woff2'),
url('fonts/UbuntuMono-Regular.woff') format('woff');
font-weight: normal;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: 'Ubuntu Mono';
src: url('fonts/UbuntuMono-Italic.woff2') format('woff2'),
url('fonts/UbuntuMono-Italic.woff') format('woff');
font-weight: normal;
font-style: italic;
font-display: swap;
}
body { body {
font-family: 'Roboto', sans-serif; font-family: 'Ubuntu', 'Roboto', sans-serif;
} }
code { code {
font-family: 'Roboto Mono', monospace; font-family: 'Ubuntu Mono', 'Roboto Mono', monospace;
} }

View File

@ -8,6 +8,7 @@
<style> <style>
.not-found { .not-found {
text-align: center; text-align: center;
font-family: 'Consolas', monospace;
} }
.not-found h1 { .not-found h1 {
margin: .25em 0 0 0; margin: .25em 0 0 0;

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
static/fonts/Ubuntu.woff Normal file

Binary file not shown.

BIN
static/fonts/Ubuntu.woff2 Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.