mirror of
https://codeberg.org/polyteknisk-radiogruppe/the_prg_server_configuration.git
synced 2026-06-14 02:38:58 +02:00
18 lines
554 B
Cheetah
18 lines
554 B
Cheetah
{{/* Custom header content - inject custom fonts that apply to all themes */}}
|
|
<style>
|
|
@font-face {
|
|
font-family: 'Maple Mono NF';
|
|
src: url('{{AppSubUrl}}/assets/fonts/MapleMonoNerd.ttf') format('truetype');
|
|
font-weight: normal;
|
|
font-style: normal;
|
|
font-display: swap;
|
|
}
|
|
|
|
:root {
|
|
--fonts-monospace: 'Maple Mono NF' !important;
|
|
}
|
|
|
|
code, pre, kbd, tt, samp, .ui code, .ui pre, .monospace {
|
|
font-family: 'Maple Mono NF', ui-monospace, SFMono-Regular, Menlo, Monaco, "Segoe UI Mono", Roboto Mono, "Courier New", monospace !important;
|
|
}
|
|
</style>
|