From ad3a3f17ff8d295e004871a20662f1e05feb23fe Mon Sep 17 00:00:00 2001 From: 0x01fe Date: Mon, 11 Mar 2024 12:59:06 -0500 Subject: [PATCH] font changes + added gitignore --- .gitignore | 1 + index_style.css | 13 +++++++++++-- 2 files changed, 12 insertions(+), 2 deletions(-) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..90ac1a7 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +*.woff \ No newline at end of file diff --git a/index_style.css b/index_style.css index 642a85d..89e3df0 100644 --- a/index_style.css +++ b/index_style.css @@ -1,7 +1,13 @@ /* Global Settings */ +@font-face { + font-family: ibmplexmono; + src: url(./IBMPlexMono-Regular.woff) format('woff'); +} + body { - font-family: 'Courier New', Courier, monospace; + /* font-family: 'Courier New', Courier, monospace; */ + font-family: ibmplexmono; } a { @@ -29,6 +35,10 @@ a:hover { border-radius: 5pt; } +.header h1 { + font-family: Arial, Helvetica, sans-serif; +} + .container { display: flex; @@ -57,7 +67,6 @@ a:hover { /* Text Settings */ font-weight: bold; - font-family: Arial, Helvetica, sans-serif; line-height: 30pt; }