Skip to content

Commit

Permalink
Prefer Quintessence
Browse files Browse the repository at this point in the history
  • Loading branch information
adiabatic committed Jan 31, 2024
1 parent b3466d2 commit b5bd809
Show file tree
Hide file tree
Showing 2 changed files with 78 additions and 13 deletions.
Binary file added Quintessence-Regular.woff2
Binary file not shown.
91 changes: 78 additions & 13 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,20 +10,19 @@
<title>Configuratronic Quikscript Cheat Sheet</title>
<meta name='viewport' content='width=750'>
<style>
@font-face { /* generated by http://www.fontsquirrel.com/ */
@font-face {
font-family: 'jeromeShaw';
src: local('☺'),
url('jerome-webfont.woff') format('woff');
font-weight: normal;
font-style: normal;
src: local('☺'), url('jerome-webfont.woff') format('woff');
}

@font-face { /* generated by http://www.fontsquirrel.com/ */
@font-face {
font-family: 'ThothIntRegular';
src: local('☺'),
url('thoth_int-webfont.woff') format('woff');
font-weight: normal;
font-style: normal;
src: local('☺'), url('thoth_int-webfont.woff') format('woff');
}

@font-face {
font-family: 'Quintessence';
src: local('☺'), url('Quintessence-Regular.woff2') format('woff2');
}

html {
Expand All @@ -47,6 +46,10 @@
td {
min-width: 2em;
}

.qsQuint {
font: 140% Quintessence;
}

.qsJerome {
font: 140% Jerome, jeromeShaw;
Expand All @@ -65,7 +68,7 @@
}

/* hide these initially */
.qsJerome, .xs, .readName, .no, .ls, .pua {
.qsThoth, .qsJerome, .xs, .readName, .no, .ls, .pua {
display: none;
}

Expand All @@ -87,6 +90,18 @@
<body>
<h1>Configuratronic Quikscript Cheat Sheet</h1>
<table>
<tr class='qsQuint'>
<td>
<td>
<td>
<td>
<td>
<td>
<td>
<td>
<td>
<td>
<td>
<tr class='qsJerome'>
<td>p
<td>b
Expand Down Expand Up @@ -173,6 +188,18 @@ <h1>Configuratronic Quikscript Cheat Sheet</h1>
<td>E65A
</table>
<table>
<tr class='qsQuint'>
<td>
<td>
<td>
<td>
<td>
<td>
<td>
<td>
<td>
<td>
<td>
<tr class='qsJerome'>
<td>z
<td>S
Expand Down Expand Up @@ -259,6 +286,16 @@ <h1>Configuratronic Quikscript Cheat Sheet</h1>
<td>E665
</table>
<table>
<tr class='qsQuint'>
<td>
<td>
<td>
<td>
<td>
<td>
<td>
<td>
<td>
<tr class='qsJerome'>
<td>n
<td>l
Expand Down Expand Up @@ -341,6 +378,16 @@ <h1>Configuratronic Quikscript Cheat Sheet</h1>
<td>E675
</table>
<table id='all-vowels'>
<tr class='qsQuint'>
<td>
<td>
<td>
<td>
<td>
<td>
<td>
<td>
<td>
<tr class='qsJerome'>
<td>y
<td>Y
Expand Down Expand Up @@ -424,6 +471,11 @@ <h1>Configuratronic Quikscript Cheat Sheet</h1>
</table>

<table id='exotics'>
<tr class='qsQuint'>
<td>
<td>
<td>
<td>
<tr class='qsJerome'>
<td>ç
<td>æ
Expand Down Expand Up @@ -467,6 +519,15 @@ <h1>Configuratronic Quikscript Cheat Sheet</h1>
<td>is
<td>for
<td>be
<tr class='qsQuint'>
<td>
<td>
<td>
<td>
<td>
<td>
<td>
<td>
<tr class='qsJerome'>
<td>H
<td>v
Expand All @@ -489,7 +550,11 @@ <h1>Configuratronic Quikscript Cheat Sheet</h1>

<form onsubmit='return false;'>
<div>
<input type='checkbox' name='qsThoth' id='qsThoth' checked>
<input type='checkbox' name='qsQuint' id='qsQuint' checked>
<label for='qsQuint'>Quintessence</label>
</div>
<div>
<input type='checkbox' name='qsThoth' id='qsThoth'>
<label for='qsThoth'>Thoth</label>
</div>
<div>
Expand Down Expand Up @@ -555,7 +620,7 @@ <h1>Configuratronic Quikscript Cheat Sheet</h1>


var i = 0,
classes = 'qsJerome qsThoth ipa xs ls readName no pua'.split(' '),
classes = 'qsQuint qsJerome qsThoth ipa xs ls readName no pua'.split(' '),
className = '',
elem = null;

Expand Down

0 comments on commit b5bd809

Please sign in to comment.