Compare commits

..

2 commits

Author SHA1 Message Date
b71384e992
tabi: posixlycorrect: update skin to make links underlined
also adds background to header
2025-09-16 16:08:36 -06:00
6e9b7a6ed1
fix issue that made headers not visible on articles 2025-09-16 14:40:07 -06:00
2 changed files with 17 additions and 2 deletions

View file

@ -19,7 +19,7 @@ external_links_class = "external"
external_links_target_blank = true external_links_target_blank = true
external_links_no_referrer = true external_links_no_referrer = true
definition_list = true definition_list = true
insert_anchor_links = "heading" insert_anchor_links = "left"
[search] [search]

View file

@ -1,4 +1,7 @@
// force dark theme /* general */
/* theme */
@mixin theme-variables($theme) { @mixin theme-variables($theme) {
@if $theme =='light' { @if $theme =='light' {
--primary-color: #FC9300; --primary-color: #FC9300;
@ -23,3 +26,15 @@
@include theme-variables('dark'); @include theme-variables('dark');
} }
} }
/* header */
.home-title {
background-color: var(--primary-color);
color: var(--background-color);
padding: 0.12rem;
}
.nav-links {
text-decoration: underline;
}