this repo has no description
0
fork

Configure Feed

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

+

Altagos 916a3c49 361b6bcb

+23 -5
+22 -3
src/_includes/layouts/root.njk
··· 5 5 <meta name="viewport" content="width=device-width, initial-scale=1.0"> 6 6 <title>{{ metas.title or title }} | Altagos</title> 7 7 8 - <link rel="stylesheet" href="/altagos.css"> 8 + <style type="text/css"> 9 + body { 10 + margin: 40px auto; 11 + max-width: 650px; 12 + line-height: 1.6; 13 + font-size: 18px; 14 + color: #444; 15 + padding: 0 10px; 16 + } 17 + h1, 18 + h2, 19 + h3 { 20 + line-height: 1.2; 21 + } 22 + </style> 9 23 10 - <link rel="stylesheet" href="/assets/highlight/tomorrow-night.css"> 11 - <script src="/assets/highlight/highlight.min.js"></script> 24 + <link rel="preload" href="/altagos.css" as="style" onload="this.onload=null;this.rel='stylesheet'"> 25 + <noscript><link rel="stylesheet" href="/altagos.css"></noscript> 26 + 27 + <link rel="preload" href="/assets/highlight/tomorrow-night.css" as="style" onload="this.onload=null;this.rel='stylesheet'"> 28 + <noscript><link rel="stylesheet" href="/assets/highlight/tomorrow-night.css"></noscript> 29 + 30 + <script defer src="/assets/highlight/highlight.min.js"></script> 12 31 13 32 <script> 14 33 hljs.highlightAll();
+1 -2
src/_includes/sass/root.scss
··· 21 21 height: 100%; 22 22 margin: 0; 23 23 padding: 0; 24 - 25 - color: var(--text-color); 26 24 } 27 25 28 26 body { ··· 35 33 max-width: 650px; 36 34 37 35 background-color: var(--background-color); 36 + color: var(--text-color); 38 37 39 38 font-family: "Berkely Mono", monospace; 40 39 font-variation-settings: "wght" 100;