updated everything

This commit is contained in:
ronny abraham 2025-02-19 02:03:15 +02:00
parent 4d3d6ea25e
commit 747b75751f
3 changed files with 20 additions and 5 deletions

View file

@ -45,16 +45,18 @@ blockquote
// Tables // Tables
table table
color: $table-color color: $table-color
border: 1px solid $table-border-color // border: 1px solid $table-border-color
th th
background-color: $table-header-bg background-color: $table-header-bg
color: $table-header-color color: $table-header-color
font-family: $secondary-font font-family: $secondary-font
th, td
border-color: $table-border-color
tr:nth-child(even) tr:nth-child(odd)
background-color: color.adjust($table-header-bg, $lightness: 10%) background-color: color.adjust($table-header-bg, $lightness: 8%)
/* Code Block Styles */ /* Code Block Styles */
pre, code pre, code

View file

@ -2,6 +2,7 @@
@use "sass:color" @use "sass:color"
@use 'mixins' as mixins-basic @use 'mixins' as mixins-basic
@include mixins-basic.remove-section-number(h5)
@include mixins-basic.remove-section-number(h2) @include mixins-basic.remove-section-number(h2)
@include mixins-basic.remove-section-number(h4) @include mixins-basic.remove-section-number(h4)
@ -109,6 +110,15 @@ div#postamble
margin-bottom: 2em margin-bottom: 2em
margin-left: 1em margin-left: 1em
.outline-5
margin-bottom: .2em
margin-left: .7em
ul
padding-top: 0
margin-top: .5em
margin-left: 1em
/* Table of Contents Link */ /* Table of Contents Link */
.toc .toc
font-weight: bold font-weight: bold

View file

@ -43,7 +43,10 @@ $table-color: $text-color
$table-header-color: $text-color $table-header-color: $text-color
$table-header-bg: #cabfa5 // Light warm tan for table headers $table-header-bg: #cabfa5 // Light warm tan for table headers
$table-border-color: #ede0d1 // Soft brown-gray for borders $table-border-color: #ede0d1 // Soft brown-gray for borders
$table-header-bg: #e6d1a1
$table-header-bg: #ede0d1 // #e6d1a1
$table-border-color: #cabfa5 // Soft brown-gray for borders
$default-header-sizes: () $default-header-sizes: ()
@ -77,7 +80,7 @@ $default-header-margins-vertical: map.set($default-header-margins-vertical, h1,
$default-header-margins-vertical: map.set($default-header-margins-vertical, h2, (top: 1em, bottom: 0em)) $default-header-margins-vertical: map.set($default-header-margins-vertical, h2, (top: 1em, bottom: 0em))
$default-header-margins-vertical: map.set($default-header-margins-vertical, h3, (top: 0em, bottom: 0.5em)) $default-header-margins-vertical: map.set($default-header-margins-vertical, h3, (top: 0em, bottom: 0.5em))
$default-header-margins-vertical: map.set($default-header-margins-vertical, h4, (top: 0em, bottom: 0.5em)) $default-header-margins-vertical: map.set($default-header-margins-vertical, h4, (top: 0em, bottom: 0.5em))
$default-header-margins-vertical: map.set($default-header-margins-vertical, h5, (top: 1em, bottom: 0.5em)) $default-header-margins-vertical: map.set($default-header-margins-vertical, h5, (top: 1em, bottom: 0em))
$default-header-margins-vertical: map.set($default-header-margins-vertical, h6, (top: 1em, bottom: 0.5em)) $default-header-margins-vertical: map.set($default-header-margins-vertical, h6, (top: 1em, bottom: 0.5em))
// Fonts // Fonts