Compare commits

..

No commits in common. "101a112661b09281d34f746489ea5f09f49a7f1a" and "f6930d36f8b22b8905704301b3ef7873f7447bc1" have entirely different histories.

24 changed files with 8 additions and 37 deletions

View file

@ -27,9 +27,9 @@
@use 'parts/_zola-error.scss';
@font-face {
src: local('JetBrainsMono'),
url('fonts/JetBrainsMonoNLNerdFont-Regular.ttf') format("truetype");
font-family: 'JetBrainsMono';
src: local('Hack'),
url('fonts/HackNerdFontMono-Regular.ttf') format("truetype");
font-family: 'Hack';
font-display: swap;
}
@ -80,9 +80,9 @@
--small-layout-width: 200px;
--paragraph-spacing: max(2.3vmin, 24px);
--sans-serif-font: 'JetBrainsMono', Helvetica, Arial, sans-serif;
--serif-font: 'JetBrainsMono', 'Georgia', serif;
--code-font: 'JetBrainsMono';
--sans-serif-font: 'Hack', Helvetica, Arial, sans-serif;
--serif-font: 'Hack', 'Georgia', serif;
--code-font: 'Hack';
scrollbar-color: var(--primary-color) transparent;
accent-color: var(--primary-color);

View file

@ -1,6 +1,6 @@
header {
width: 100%;
font-family: 'JetBrainsMono', var(--sans-serif-font);
font-family: 'Hack', var(--sans-serif-font);
}
.page-header {

View file

@ -1,25 +0,0 @@
// force dark theme
@mixin theme-variables($theme) {
@if $theme =='light' {
--primary-color: #FC9300;
--background-color: #131a21;
}
@else if $theme == 'dark' {
--primary-color: #FC9300;
--background-color: #131a21;
}
}
:root {
@include theme-variables('light');
}
[data-theme='dark'] {
@include theme-variables('dark');
}
@media (prefers-color-scheme: dark) {
:root:not([data-theme='light']) {
@include theme-variables('dark');
}
}

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View file

@ -100,13 +100,9 @@
{# Shows "Powered by Zola & tabi" notice #}
{{ macros_translate::translate(key="powered_by", default="Powered by", language_strings=language_strings) }}
<a rel="{{ rel_attributes }}" {{ blank_target }} href="https://nixos.org/">NixOS</a>,
<a rel="{{ rel_attributes }}" {{ blank_target }} href="https://vpsfree.org/">vpsFree</a>,
<a rel="{{ rel_attributes }}" {{ blank_target }} href="https://www.getzola.org">Zola</a>
{{ macros_translate::translate(key="and", default="&", language_strings=language_strings) }}
<a rel="{{ rel_attributes }}" {{ blank_target }} href="https://github.com/welpo/tabi">tabi</a>.
Backed up by
<a rel="{{ rel_attributes }}" {{ blank_target }} href="https://www.rsync.net/">rsync</a>.
<a rel="{{ rel_attributes }}" {{ blank_target }} href="https://github.com/welpo/tabi">tabi</a>
{# Shows link to remote repository #}
{%- if config.extra.remote_repository_url and config.extra.show_remote_source | default(value=true) -%}