this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

changed font + site config

Altagos 509e9835 e0c8897b

+47 -25
+2 -1
.build.yml
··· 15 15 cp ~/.env .env 16 16 deno task deploy 17 17 cp ./site.tar.gz ../site.tar.gz 18 + cp ./siteconfig.json ../config.json 18 19 - upload: | 19 - hut pages publish -d $site site.tar.gz 20 + hut pages publish --site-config config.json -d $site site.tar.gz
+1
_config.ts
··· 84 84 site.use(toml()); 85 85 86 86 site.copy("assets"); 87 + site.copy("404.html") 87 88 88 89 export default site;
+29
siteconfig.json
··· 1 + { 2 + "notFound": "404.html", 3 + "fileConfigs": [ 4 + { 5 + "glob": "*.png", 6 + "options": { 7 + "cacheControl": "max-age=2592000" 8 + } 9 + }, 10 + { 11 + "glob": "*.css", 12 + "options": { 13 + "cacheControl": "max-age=7200" 14 + } 15 + }, 16 + { 17 + "glob": "*.js", 18 + "options": { 19 + "cacheControl": "max-age=7200" 20 + } 21 + }, 22 + { 23 + "glob": "*.woff", 24 + "options": { 25 + "cacheControl": "max-age=7200" 26 + } 27 + } 28 + ] 29 + }
+1 -1
src/404.html
··· 16 16 </head> 17 17 <body> 18 18 <h1>404 - Not found</h1> 19 - <p>The URL does not exist</p> 19 + <p>This URL does not exist</p> 20 20 </body> 21 21 </html>
+4 -16
src/_includes/sass/_fonts.scss
··· 1 1 @font-face { 2 - font-family: "Berkely Mono"; 2 + font-family: "Recursive"; 3 3 src: 4 - local("Berkely Mono Variable"), 5 - local("Berkely Mono"), 6 - url("assets/BerkeleyMonoVariable-Regular.woff2") format(woff) tech(variations), 7 - url("assets/BerkeleyMonoVariable-Regular.ttf") format(truetype) tech(variations); 4 + local("Recursive"), 5 + local("Recursive"), 6 + url("assets/Recursive_VF.woff2") format(woff) tech(variations); 8 7 font-display: block; 9 8 font-style: normal; 10 9 } 11 - 12 - @font-face { 13 - font-family: "Berkely Mono Italic"; 14 - src: 15 - local("Berkely Mono Variable Italic"), 16 - local("Berkely Mono Italic"), 17 - url("assets/BerkeleyMonoVariable-Italic.woff2") format(woff) tech(variations), 18 - url("assets/BerkeleyMonoVariable-Italic.ttf") format(truetype) tech(variations); 19 - font-display: block; 20 - font-style: italic; 21 - }
+10 -7
src/_includes/sass/root.scss
··· 35 35 background-color: var(--background-color); 36 36 color: var(--text-color); 37 37 38 - font-family: "Berkely Mono", monospace; 39 - font-variation-settings: "wght" 100; 38 + font-family: "Recursive", monospace; 39 + font-variation-settings: "wght" 400; 40 40 font-size: var(--font-size); 41 41 font-variant-ligatures: common-ligatures; 42 - font-feature-settings: "liga" 1; 42 + font-feature-settings: 43 + "liga" 1, 44 + "MONO" 1, 45 + "CRSV" 0.5; 43 46 44 47 -webkit-font-smoothing: antialiased; 45 48 -moz-font-smoothing: antialiased; ··· 65 68 } 66 69 67 70 .note { 68 - font-family: "Berkely Mono", monospace; 71 + font-family: "Recursive", monospace; 69 72 font-size: smaller; 70 73 color: var(--color-subtle); 71 74 } ··· 73 76 74 77 content { 75 78 line-height: 1.5; 76 - font-family: "Berkely Mono", monospace; 79 + font-family: "Recursive", monospace; 77 80 78 81 h1, 79 82 h2, 80 83 h3 { 81 - font-variation-settings: "wght" 120; 84 + font-variation-settings: "wght" 600; 82 85 line-height: 1.2; 83 86 } 84 87 ··· 90 93 } 91 94 92 95 code { 93 - font-family: "Berkely Mono", monospace; 96 + font-family: "Recursive", monospace; 94 97 } 95 98 96 99 a {
src/assets/BerkeleyMonoVariable-Italic.ttf

This is a binary file and will not be displayed.

src/assets/BerkeleyMonoVariable-Italic.woff

This is a binary file and will not be displayed.

src/assets/BerkeleyMonoVariable-Italic.woff2

This is a binary file and will not be displayed.

src/assets/BerkeleyMonoVariable-Regular.ttf

This is a binary file and will not be displayed.

src/assets/BerkeleyMonoVariable-Regular.woff

This is a binary file and will not be displayed.

src/assets/BerkeleyMonoVariable-Regular.woff2

This is a binary file and will not be displayed.