Change firamono font weight

This commit is contained in:
Fred Boniface 2022-11-30 13:49:53 +00:00
parent 09855d4f1b
commit a630515cea
4 changed files with 11 additions and 2 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -1,12 +1,20 @@
/* FONTS */ /* FONTS */
@font-face { @font-face {
font-family: 'fira_monoregular'; font-family: 'firamono';
src: url('/styles/fonts/firamono/firamono-regular.woff2') format('woff2'), src: url('/styles/fonts/firamono/firamono-regular.woff2') format('woff2'),
url('/styles/fonts/firamono/firamono-regular.woff') format('woff'), url('/styles/fonts/firamono/firamono-regular.woff') format('woff'),
url('/styles/fonts/firamono/firamono-regular.ttf') format('truetype'); url('/styles/fonts/firamono/firamono-regular.ttf') format('truetype');
font-weight: normal; font-weight: normal;
font-style: normal; font-style: normal;
} }
@font-face {
font-family: 'firamono';
src: url('/styles/fonts/firamono/firemono-500.woff2') format('woff2'),
url('/styles/fonts/firamono/firemono-500.woff') format('woff'),
url('/styles/fonts/firamono/firemono-500.ttf') format('truetype');
font-weight: 500;
font-style: normal;
}
/* COLOR VARS */ /* COLOR VARS */
:root { :root {
@ -96,7 +104,8 @@ body {
.actionbutton { .actionbutton {
display: inline-block; display: inline-block;
text-decoration: none; text-decoration: none;
font-family: 'fira_monoregular', monospace; font-family: 'firamono', monospace;
font-weight: 500;
cursor: pointer; cursor: pointer;
background-color: #3c78d8; background-color: #3c78d8;
border: none; border: none;