add proxima nova font (#2883)

* add proxima nova font

* update to woff files

* clean up defaults
This commit is contained in:
Lucy
2025-04-21 13:30:38 -04:00
committed by GitHub
parent 27272680a2
commit 33ae46f76a
13 changed files with 63 additions and 1 deletions

View File

@@ -0,0 +1 @@
Copyright (c) Mark Simonson, 2005. All rights reserved.

View File

@@ -157,6 +157,62 @@
src: url('/assets/fonts/Courier_New/CourierNew-Bold.ttf');
}
@font-face {
font-family: 'Proxima Nova';
font-style: normal;
font-weight: 100; // thin
src: url('/assets/fonts/Proxima_Nova/Proxima-Nova-Thin.woff');
}
@font-face {
font-family: 'Proxima Nova';
font-style: normal;
font-weight: 300; // light
src: url('/assets/fonts/Proxima_Nova/Proxima-Nova-Light.woff');
}
@font-face {
font-family: 'Proxima Nova';
font-style: normal;
font-weight: 400; // normal
src: url('/assets/fonts/Proxima_Nova/Proxima-Nova-Regular.woff');
}
@font-face {
font-family: 'Proxima Nova';
font-style: normal;
font-weight: 500; // medium
src: url('/assets/fonts/Proxima_Nova/Proxima-Nova-Medium.woff');
}
@font-face {
font-family: 'Proxima Nova';
font-style: normal;
font-weight: 600; // semibold
src: url('/assets/fonts/Proxima_Nova/Proxima-Nova-Semibold.woff');
}
@font-face {
font-family: 'Proxima Nova';
font-style: normal;
font-weight: 700; // bold
src: url('/assets/fonts/Proxima_Nova/Proxima-Nova-Bold.woff');
}
@font-face {
font-family: 'Proxima Nova';
font-style: normal;
font-weight: 800; // extrabold
src: url('/assets/fonts/Proxima_Nova/Proxima-Nova-Extrabold.woff');
}
@font-face {
font-family: 'Proxima Nova';
font-style: normal;
font-weight: 900; // black
src: url('/assets/fonts/Proxima_Nova/Proxima-Nova-Black.woff');
}
$wide-modal: 900px;
:root {

View File

@@ -24,7 +24,7 @@ import { PatchMonitorService } from './services/patch-monitor.service'
tui-root {
height: 100%;
font-family: 'Open Sans', sans-serif;
font-family: 'Proxima Nova', sans-serif;
}
`,
})

View File

@@ -99,6 +99,10 @@ interface Log {
padding: 0 1rem;
}
strong {
font-weight: 700;
}
logs {
height: calc(100% - 4rem);
width: 100%;

View File

@@ -21,6 +21,7 @@ hr {
:root {
--bumper: 0.375rem;
--tui-font-text: 'Proxima Nova', 'Manrope', -apple-system, 'BlinkMacSystemFont', system-ui, 'Roboto', 'Segoe UI', 'Helvetica Neue', sans-serif;
}
.g-page {