diff --git a/css/resume.css b/css/resume.css index 828602e..30debb5 100644 --- a/css/resume.css +++ b/css/resume.css @@ -9,13 +9,13 @@ body { flex-direction: column; justify-content: center; align-items: center; + font-family: "IBM Plex Sans", sans-serif; } button#print { margin: 2rem auto; border: none; font-size: 9pt; - font-family: "IBM Plex Sans"; background: #eee; color: #425580; padding: 0.5rem 1rem; @@ -38,7 +38,6 @@ button#print i { height: 11in; margin: 0 auto 4rem; box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1), 0 0 0.5rem rgba(0, 0, 0, 0.2); - font-family: "IBM Plex Sans", sans-serif; font-weight: 400; font-size: 9pt; line-height: 14pt; @@ -123,7 +122,7 @@ h2 { line-height: 14pt; height: 21pt; font-size: 13pt; - font-weight: 900; + font-weight: 600; display: block; padding-right: 0; align-self: flex-start; @@ -144,6 +143,7 @@ h2:before { h3 { margin: 0; font-size: 11pt; + font-weight: 500; } h3 a i.fa { font-size: 7pt; @@ -161,7 +161,7 @@ h4 { } strong { - font-weight: 600; + font-weight: 500; } section { diff --git a/css/resume.scss b/css/resume.scss index 30ad680..c329074 100644 --- a/css/resume.scss +++ b/css/resume.scss @@ -8,6 +8,7 @@ body { flex-direction: column; justify-content: center; align-items: center; + font-family: 'IBM Plex Sans', sans-serif; } $ls: 14pt; @@ -16,7 +17,6 @@ button#print { margin: 2rem auto; border: none; font-size: 9pt; - font-family: 'IBM Plex Sans'; background: #eee; color: #425580; padding: 0.5rem 1rem; @@ -42,7 +42,6 @@ button#print { height: 11in; margin: 0 auto 4rem; box-shadow: 0 0.25rem 0.75rem rgba(0,0,0,0.1), 0 0 0.5rem rgba(0,0,0,0.2); - font-family: 'IBM Plex Sans', sans-serif; font-weight: 400; font-size: 9pt; line-height: $ls; @@ -137,7 +136,7 @@ h2 { line-height: $ls; height: 1.5*$ls; font-size: 13pt; - font-weight: 900; + font-weight: 600; display: block; padding-right: 0; align-self: flex-start; @@ -160,6 +159,7 @@ h2 { h3 { margin: 0; font-size: 11pt; + font-weight: 500; a i.fa { font-size: 7pt; @@ -178,7 +178,7 @@ h4 { } strong { - font-weight: 600; + font-weight: 500; } section { diff --git a/js/script.js b/js/script.js index c290f38..9f08c5e 100644 --- a/js/script.js +++ b/js/script.js @@ -116,12 +116,10 @@ const sequences = [ 'YELL', 'BLUE', 'SAVE' -].map(seq => { - return { - word: seq, - combo: seq.split('').map(c => 'Key' + c) - } -}); +].map(seq => ({ + word: seq, + combo: seq.split('').map(c => 'Key' + c) +})); const lastFourKeys = [];