This commit is contained in:
Barrett Ruth 2025-10-04 23:41:58 -04:00
parent 29f4ab66d9
commit 85a28e037f
2 changed files with 30 additions and 5 deletions

3
.gitignore vendored
View file

@ -1,4 +1,3 @@
# Python-generated files
__pycache__/
*.py[oc]
build/
@ -6,5 +5,5 @@ dist/
wheels/
*.egg-info
# Virtual environments
.venv
public/fonts

View file

@ -1,4 +1,30 @@
/* Fonts will be loaded from system */
@font-face {
font-family: "Apercu Mono Pro";
src: url("/public/fonts/apercu-mono/ApercuMonoProRegular.ttf") format("truetype");
font-weight: 400;
font-style: normal;
}
@font-face {
font-family: "Apercu Mono Pro";
src: url("/public/fonts/apercu-mono/ApercuMonoProMedium.ttf") format("truetype");
font-weight: 500;
font-style: normal;
}
@font-face {
font-family: "Apercu Mono Pro";
src: url("/public/fonts/apercu-mono/ApercuMonoProLight.ttf") format("truetype");
font-weight: 300;
font-style: normal;
}
@font-face {
font-family: "Apercu Mono Pro";
src: url("/public/fonts/apercu-mono/ApercuMonoProBold.ttf") format("truetype");
font-weight: 700;
font-style: normal;
}
html,
body {
@ -65,7 +91,7 @@ li {
}
pre code {
font-family: "Snowflake", "Courier New", monospace;
font-family: "Apercu Mono Pro", "Courier New", monospace;
font-size: 0.95rem;
line-height: 1.5;
background: transparent;
@ -76,6 +102,6 @@ pre code {
.hljs-ln-numbers {
text-align: right;
color: #999;
border-right: 10px solid #ffffff;
border-right: 1em solid #ffffff;
user-select: none;
}