diff --git a/sass/css/style.scss b/sass/css/style.scss index e0c7d63..4ef59bb 100644 --- a/sass/css/style.scss +++ b/sass/css/style.scss @@ -30,8 +30,8 @@ } @font-face { - font-family: SourceCodePro; - src: url("/fonts/SourceCodePro-Regular.otf"); + font-family: "Fira Code"; + src: url("/fonts/FiraCode-Regular.ttf"); } html, body { @@ -115,7 +115,7 @@ main p, main li { } code, pre { - font-family: SourceCodePro, monospace, monospace; + font-family: "Fira Code", monospace, monospace; } code { @@ -140,6 +140,14 @@ pre code { text-decoration: none; } +table { + border-collapse: collapse; +} + +table td, table th { + border: 1px solid #888; +} + @media (prefers-color-scheme: dark) { html { background-color: #000; diff --git a/static/fonts/FiraCode-Regular.ttf b/static/fonts/FiraCode-Regular.ttf new file mode 100644 index 0000000..b8d18f9 Binary files /dev/null and b/static/fonts/FiraCode-Regular.ttf differ diff --git a/static/fonts/SourceCodePro-Regular.otf b/static/fonts/SourceCodePro-Regular.otf deleted file mode 100644 index f32e6bd..0000000 Binary files a/static/fonts/SourceCodePro-Regular.otf and /dev/null differ