misc changes

Signed-off-by: Naman Sood <mail@nsood.in>
This commit is contained in:
Naman Sood 2023-03-09 18:55:45 -05:00
parent 294e147d39
commit 004132e966
3 changed files with 12 additions and 14 deletions

View file

@ -9,13 +9,13 @@ body {
flex-direction: column; flex-direction: column;
justify-content: center; justify-content: center;
align-items: center; align-items: center;
font-family: "IBM Plex Sans", sans-serif;
} }
button#print { button#print {
margin: 2rem auto; margin: 2rem auto;
border: none; border: none;
font-size: 9pt; font-size: 9pt;
font-family: "IBM Plex Sans";
background: #eee; background: #eee;
color: #425580; color: #425580;
padding: 0.5rem 1rem; padding: 0.5rem 1rem;
@ -38,7 +38,6 @@ button#print i {
height: 11in; height: 11in;
margin: 0 auto 4rem; 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); 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-weight: 400;
font-size: 9pt; font-size: 9pt;
line-height: 14pt; line-height: 14pt;
@ -123,7 +122,7 @@ h2 {
line-height: 14pt; line-height: 14pt;
height: 21pt; height: 21pt;
font-size: 13pt; font-size: 13pt;
font-weight: 900; font-weight: 600;
display: block; display: block;
padding-right: 0; padding-right: 0;
align-self: flex-start; align-self: flex-start;
@ -144,6 +143,7 @@ h2:before {
h3 { h3 {
margin: 0; margin: 0;
font-size: 11pt; font-size: 11pt;
font-weight: 500;
} }
h3 a i.fa { h3 a i.fa {
font-size: 7pt; font-size: 7pt;
@ -161,7 +161,7 @@ h4 {
} }
strong { strong {
font-weight: 600; font-weight: 500;
} }
section { section {

View file

@ -8,6 +8,7 @@ body {
flex-direction: column; flex-direction: column;
justify-content: center; justify-content: center;
align-items: center; align-items: center;
font-family: 'IBM Plex Sans', sans-serif;
} }
$ls: 14pt; $ls: 14pt;
@ -16,7 +17,6 @@ button#print {
margin: 2rem auto; margin: 2rem auto;
border: none; border: none;
font-size: 9pt; font-size: 9pt;
font-family: 'IBM Plex Sans';
background: #eee; background: #eee;
color: #425580; color: #425580;
padding: 0.5rem 1rem; padding: 0.5rem 1rem;
@ -42,7 +42,6 @@ button#print {
height: 11in; height: 11in;
margin: 0 auto 4rem; 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); 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-weight: 400;
font-size: 9pt; font-size: 9pt;
line-height: $ls; line-height: $ls;
@ -137,7 +136,7 @@ h2 {
line-height: $ls; line-height: $ls;
height: 1.5*$ls; height: 1.5*$ls;
font-size: 13pt; font-size: 13pt;
font-weight: 900; font-weight: 600;
display: block; display: block;
padding-right: 0; padding-right: 0;
align-self: flex-start; align-self: flex-start;
@ -160,6 +159,7 @@ h2 {
h3 { h3 {
margin: 0; margin: 0;
font-size: 11pt; font-size: 11pt;
font-weight: 500;
a i.fa { a i.fa {
font-size: 7pt; font-size: 7pt;
@ -178,7 +178,7 @@ h4 {
} }
strong { strong {
font-weight: 600; font-weight: 500;
} }
section { section {

View file

@ -116,12 +116,10 @@ const sequences = [
'YELL', 'YELL',
'BLUE', 'BLUE',
'SAVE' 'SAVE'
].map(seq => { ].map(seq => ({
return { word: seq,
word: seq, combo: seq.split('').map(c => 'Key' + c)
combo: seq.split('').map(c => 'Key' + c) }));
}
});
const lastFourKeys = []; const lastFourKeys = [];