[Archived] Archived WIP of vielle.dev

Fix rem to be 16px

vielle.dev 1eaf3e5b 53a40a74

verified
+4 -11
+1 -5
src/Base.astro
··· 32 32 // sets the timezone offset 33 33 document.cookie = `timezone=${new Date().toString()};path=/`; 34 34 </script> 35 - <!-- default styles (rem, *) --> 35 + <!-- default styles --> 36 36 <style is:global> 37 37 @layer reset { 38 - :root { 39 - font-size: 62.5%; 40 - } 41 38 body { 42 - font-size: 1.6rem; 43 39 line-height: 1.5; 44 40 -webkit-font-smoothing: antialiased; 45 41 font-family: sans-serif;
+3 -3
src/components/blog/post.css
··· 102 102 } 103 103 104 104 & h2 { 105 - font-size: 3.6rem; 105 + font-size: 2.2rem; 106 106 } 107 107 108 108 & h3 { 109 - font-size: 2.8rem; 109 + font-size: 1.8rem; 110 110 } 111 111 112 112 & h4 { 113 - font-size: 2.4rem; 113 + font-size: 1.5rem; 114 114 } 115 115 116 116 /* Paragraphs */
-2
src/pages/blog/[id].astro
··· 77 77 <!-- page styles --> 78 78 <style> 79 79 header { 80 - font-size: 1.6rem; 81 - 82 80 position: fixed; 83 81 top: 0; 84 82 width: 100%;
-1
src/pages/blog/index.astro
··· 30 30 } 31 31 32 32 heading { 33 - font-size: 1.6rem; 34 33 margin-bottom: var(--y-gap); 35 34 color: white; 36 35