misc changes
Signed-off-by: Naman Sood <mail@nsood.in>
This commit is contained in:
parent
294e147d39
commit
004132e966
3 changed files with 12 additions and 14 deletions
|
@ -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 {
|
||||
|
|
|
@ -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 {
|
||||
|
|
10
js/script.js
10
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 = [];
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue