diff --git a/acl.cool/site/draft/seeking_chill.dj b/acl.cool/site/draft/seeking_chill.dj new file mode 100644 index 0000000..9bccff1 --- /dev/null +++ b/acl.cool/site/draft/seeking_chill.dj @@ -0,0 +1,12 @@ +# Seeking the Chill\ +# of the High-Def Screen + +Artificial print artifacts are added to typefaces to a) make them feel "warmer" or b) adhere faithfully to a source type's realization in some actual printed material. I tend not to enjoy these sorts of things, preferring my typefaces natural, unfiltered, sharp. Adding print artifacts is actually relatively easy with path post-processing or other computational methods--- taking it away is more challenging + +So, I made a tool for that, and now I have a nice, sharp rendition of Libre Franklin. + +## Background + +## Results + +## Using the Tool Yourself \ No newline at end of file diff --git a/acl.cool/site/writings/suaqsuese.dj b/acl.cool/site/writings/suaqsuese.dj new file mode 100644 index 0000000..50f68dd --- /dev/null +++ b/acl.cool/site/writings/suaqsuese.dj @@ -0,0 +1,32 @@ +# Ké Suaqsuese po ké\ +# Jiao Abarahamchuaq + +Here's the Lord's Prayer, translated into the constructed language [Toaq](https://toaq.net). + +{.toaq-latin} +> Hóı ké naqpao ı̂me, jü nıe hóa súoga, jıaobo ké chua sûq ba.\ +> Ké tı̣cue sûq bï, sha ti hóq nı́ ba.\ +> Ké tı̣aojai sûq bï, juna hóq tı̂ gája nạ́sıu hao hóq tî súoga ba.\ +> Do súq íme ké nam po tú chaq ba.\ +> Ruao súq ı́me nạ́sıu ruao ı́me ꝡé sạcheom cû íme hóa ba.\ +> Caq súq íme cá ꝡá aojaı ı́me báq huı búru ꝡá gıcıa bebọcheom ı́me ba. + +Here it is translated more-or-less directly into English. + +> The father of us (who is in heaven), may your name be hallowed.\ +> That over which you rule, may it arrive at this place.\ +> That which you will to be, may that be on Earth, such being similar to how that is in heaven.\ +> Each day, may you give to us the bread of that day.\ +> May you forgive us, such being similar to how we forgive those who commit evil acts against us.\ +> May you direct us not to desire what is bad, but to be free from association with evil acts. + +And in source English, in case you need it. + +> Our Father, who art in heaven, hallowed be thy name.\ +> Thy kingdom come,\ +> thy will be done, on earth, as it is in heaven.\ +> Give us this day our daily bread\ +> and forgive us our trespasses as we forgive those who trespass against us;\ +> and lead us not into temptation, but deliver us from evil. + +I'll likely update this page as I come up with better translations. \ No newline at end of file diff --git a/css/fonts.css b/css/fonts.css index 70c4d71..00d5949 100644 --- a/css/fonts.css +++ b/css/fonts.css @@ -177,6 +177,34 @@ font-style: normal; } +@font-face { + font-family: 'ToaqLatin'; + src: url('../assets/fonts/NotoSans/NotoSans-Regular.ttf') format('truetype'); + font-weight: normal; + font-style: normal; +} + +@font-face { + font-family: 'ToaqLatin'; + src: url('../assets/fonts/NotoSans/NotoSans-Italic.ttf') format('truetype'); + font-weight: normal; + font-style: italic; +} + +@font-face { + font-family: 'ToaqLatin'; + src: url('../assets/fonts/NotoSans/NotoSans-Bold.ttf') format('truetype'); + font-weight: bold; + font-style: normal; +} + +@font-face { + font-family: 'ToaqLatin'; + src: url('../assets/fonts/NotoSans/NotoSans-BoldItalic.ttf') format('truetype'); + font-weight: bold; + font-style: italic; +} + :root { --base-font-size: 16pt; } @@ -263,4 +291,13 @@ math { .cursive { font-family: "CursivePw"; font-size: calc(0.86 * var(--base-font-size)); +} + +.toaq-latin { + font-family: "ToaqLatin"; + font-size: calc(0.84 * var(--base-font-size)); +} + +.toaq-latin blockquote { + line-height: var(--ui-spacing * 1.5); } \ No newline at end of file diff --git a/css/looks.css b/css/looks.css index 585a96e..467f7c4 100644 --- a/css/looks.css +++ b/css/looks.css @@ -84,6 +84,7 @@ h5+*, h6+* { margin-top: 0; padding-top: calc(var(--base-font-size) * (2/3)); + padding-bottom: 0.05px; } blockquote { @@ -92,6 +93,8 @@ blockquote { border-left: 4px solid var(--darkest-color); padding-left: 0.45em; margin: 0; + /* padding-top: 0.05px; */ + /* padding-bottom: 0.05px; */ } blockquote:has(p + p) { diff --git a/fonts/NotoSans/NotoSans-Bold.ttf b/fonts/NotoSans/NotoSans-Bold.ttf new file mode 100644 index 0000000..3e68bc2 Binary files /dev/null and b/fonts/NotoSans/NotoSans-Bold.ttf differ diff --git a/fonts/NotoSans/NotoSans-BoldItalic.ttf b/fonts/NotoSans/NotoSans-BoldItalic.ttf new file mode 100644 index 0000000..4b56351 Binary files /dev/null and b/fonts/NotoSans/NotoSans-BoldItalic.ttf differ diff --git a/fonts/NotoSans/NotoSans-Italic.ttf b/fonts/NotoSans/NotoSans-Italic.ttf new file mode 100644 index 0000000..eedc5e4 Binary files /dev/null and b/fonts/NotoSans/NotoSans-Italic.ttf differ diff --git a/fonts/NotoSans/NotoSans-Regular.ttf b/fonts/NotoSans/NotoSans-Regular.ttf new file mode 100644 index 0000000..973bc2e Binary files /dev/null and b/fonts/NotoSans/NotoSans-Regular.ttf differ