mirror of
https://github.com/NousResearch/atropos.git
synced 2026-04-30 17:40:36 +00:00
18 lines
314 B
CSS
18 lines
314 B
CSS
/* IBM Plex Sans for body, IBM Plex Mono for code/pre/monospace */
|
|
* {
|
|
box-sizing: border-box;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
body {
|
|
font-family: "IBM Plex Sans", Arial, sans-serif;
|
|
}
|
|
|
|
code,
|
|
pre,
|
|
kbd,
|
|
samp {
|
|
font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, "Liberation Mono",
|
|
Menlo, monospace;
|
|
}
|