changes to the table of contents
This commit is contained in:
parent
8fcaf67345
commit
4f9ded5a9a
3 changed files with 30 additions and 11 deletions
|
|
@ -1,5 +1,6 @@
|
||||||
// _variables.sass
|
// _variables.sass
|
||||||
@use "sass:map"
|
@use "sass:map"
|
||||||
|
@use "sass:color"
|
||||||
@use '../../../../../_share/media/sass/fonts' as fonts
|
@use '../../../../../_share/media/sass/fonts' as fonts
|
||||||
|
|
||||||
$list-padding-left: 1.5em
|
$list-padding-left: 1.5em
|
||||||
|
|
@ -12,17 +13,21 @@ $note-background-color: #333842 // Note background
|
||||||
$note-border-color: #c678dd // Note border color
|
$note-border-color: #c678dd // Note border color
|
||||||
|
|
||||||
// Colors
|
// Colors
|
||||||
$primary-color: #d10094 // Dark pink for headers
|
$primary-color: #d10094 // Primary (Pink): Vibrant and attention-grabbing.
|
||||||
$secondary-color: #5b8ee8 // Rich blue for secondary headers
|
$secondary-color: #5b8ee8 // Secondary (Blue): Rich, calming contrast to pink.
|
||||||
$tertiary-color: #228b22 // Dark green for subheaders
|
$tertiary-color: #228b22 // Tertiary (Green): Strong, natural balance to pink and blue.
|
||||||
|
$quaternary-color: #40e0d0 // Quaternary (Turquoise): Fresh and energetic, great for highlights or links.
|
||||||
|
$quinary-color: #ffd966 // Quinary (Mustard Yellow): Warm and muted, adds subtle emphasis for accents.
|
||||||
|
|
||||||
// Text
|
// Text
|
||||||
$text-color: #aeb1c7
|
$text-color: #aeb1c7
|
||||||
$background-color: #282a36 // Dark black-gray background
|
$background-color: #282a36 // Dark black-gray background
|
||||||
|
|
||||||
// Links, Anchors
|
// Links, Anchors
|
||||||
$anchor-color: #1e90ff // Dodger blue for links
|
$anchor-color: color.adjust($secondary-color, $lightness: 15%)
|
||||||
$anchor-hover-color: #e0006f// Vibrant pink for link hover
|
$anchor-hover-color: color.adjust($primary-color, $lightness: 15%)
|
||||||
|
$toc-anchor-color: color.adjust($secondary-color, $lightness: -5%)
|
||||||
|
$toc-anchor-hover-color: color.adjust($primary-color, $lightness: -5%)
|
||||||
|
|
||||||
// Tables
|
// Tables
|
||||||
$table-header-bg: #44475a // Steely blue for table headers
|
$table-header-bg: #44475a // Steely blue for table headers
|
||||||
|
|
|
||||||
|
|
@ -9,11 +9,6 @@
|
||||||
@include mixins-basic.set-header-margins-sides($default-header-margins-sides)
|
@include mixins-basic.set-header-margins-sides($default-header-margins-sides)
|
||||||
@include mixins-basic.set-header-margins-vertical($default-header-margins-vertical)
|
@include mixins-basic.set-header-margins-vertical($default-header-margins-vertical)
|
||||||
|
|
||||||
/* Table of Contents Link */
|
|
||||||
.toc
|
|
||||||
font-weight: bold
|
|
||||||
color: $primary-color
|
|
||||||
|
|
||||||
/* Base Styles */
|
/* Base Styles */
|
||||||
body
|
body
|
||||||
font-family: $primary-font
|
font-family: $primary-font
|
||||||
|
|
@ -132,7 +127,27 @@ div#postamble
|
||||||
.outline-text-4
|
.outline-text-4
|
||||||
margin-left: .5em
|
margin-left: .5em
|
||||||
|
|
||||||
|
/* Table of Contents Link */
|
||||||
|
.toc
|
||||||
|
font-weight: bold
|
||||||
|
color: $primary-color
|
||||||
|
|
||||||
div#table-of-contents
|
div#table-of-contents
|
||||||
|
ul
|
||||||
|
margin: 0
|
||||||
|
list-style-type: square
|
||||||
|
|
||||||
|
li
|
||||||
|
margin: .4 0
|
||||||
|
|
||||||
|
a
|
||||||
|
color: $toc-anchor-color
|
||||||
|
text-transform: lowercase
|
||||||
|
|
||||||
|
&:hover
|
||||||
|
color: $toc-anchor-hover-color
|
||||||
|
|
||||||
h2
|
h2
|
||||||
margin-left: 0
|
margin-left: 0
|
||||||
|
margin-bottom: .2em
|
||||||
text-transform: uppercase
|
text-transform: uppercase
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,6 @@
|
||||||
- [[https://www.youtube.com/playlist?list=PLnzRvn3Ye6vkMoJudiSmzEwjPMHkchYX7][Playlist: how to attract women]]
|
- [[https://www.youtube.com/playlist?list=PLnzRvn3Ye6vkMoJudiSmzEwjPMHkchYX7][Playlist: how to attract women]]
|
||||||
|
|
||||||
* Table of Contents
|
* Table of Contents
|
||||||
|
|
||||||
** [[./_subsections/video01-easy-to-get-girls.org][It's actually pretty easy to get girls]]
|
** [[./_subsections/video01-easy-to-get-girls.org][It's actually pretty easy to get girls]]
|
||||||
** [[./_subsections/video02-woman-magnet.org][How to be a woman magnet]]
|
** [[./_subsections/video02-woman-magnet.org][How to be a woman magnet]]
|
||||||
** [[./_subsections/video03-make-women-obsessed.org][secret to make women obsessed]]
|
** [[./_subsections/video03-make-women-obsessed.org][secret to make women obsessed]]
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue