mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-21 09:16:30 -05:00
7aeaf488c4
Signed-off-by: Tilman Vatteroth <tilman.vatteroth@tu-dortmund.de>
33 lines
893 B
CSS
33 lines
893 B
CSS
/*
|
|
* SPDX-FileCopyrightText: 2021 The HedgeDoc developers (see AUTHORS file)
|
|
*
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
body, input {
|
|
font-family: "Roboto",-apple-system,BlinkMacSystemFont,Helvetica,Arial,sans-serif;
|
|
}
|
|
|
|
code, kbd, pre {
|
|
font-family: "Roboto Mono",SFMono-Regular,Consolas,Menlo,monospace;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'Roboto';
|
|
font-style: normal;
|
|
font-weight: 400;
|
|
font-display: swap;
|
|
src: local('Roboto'),
|
|
url('./Roboto/roboto-latin-regular.woff2') format('woff2'),
|
|
url('./Roboto/roboto-latin-regular.woff') format('woff'),
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'Roboto Mono';
|
|
font-style: normal;
|
|
font-weight: 400;
|
|
font-display: swap;
|
|
src: local('Roboto Mono'),
|
|
url('./Roboto/roboto-mono-latin-regular.woff2') format('woff2'),
|
|
url('./Roboto/roboto-mono-latin-regular.woff') format('woff'),
|
|
}
|