this repo has no description

add dollcode

0xda157 894c4e9e 5e7d7fd8

+21 -3
+13
sass/style.scss
··· 60 60 display: flex; 61 61 margin-top: 1rem; 62 62 gap: 1rem; 63 + justify-content: space-between; 64 + .nav-section { 65 + display: flex; 66 + gap: 1rem; 67 + } 63 68 } 64 69 65 70 main { ··· 77 82 hr { 78 83 color: var(--primary); 79 84 } 85 + 86 + .dollcode { 87 + transition: color 2s; 88 + color: var(--accent); 89 + @starting-style { 90 + color: var(--secondary); 91 + } 92 + }
+8 -3
templates/partials/nav.html
··· 1 1 <nav> 2 - {%- for link in config.extra.nav -%} 3 - <a href="{{ link.url }}">{{ link.name }}</a> 4 - {%- endfor -%} 2 + <div class="nav-section"> 3 + {%- for link in config.extra.nav -%} 4 + <a href="{{ link.url }}">{{ link.name }}</a> 5 + {%- endfor -%} 6 + </div> 7 + <div class="nav-section"> 8 + <span class="dollcode">▖▖▘▘▌▘▌▌▘▘▘▌▌</span> 9 + </div> 5 10 </nav>