udpated categories
This commit is contained in:
parent
0aec2c5767
commit
4827a3f188
2 changed files with 87 additions and 2 deletions
|
|
@ -1,8 +1,7 @@
|
||||||
@use "sass:map"
|
@use "sass:map"
|
||||||
@use "sass:color"
|
@use "sass:color"
|
||||||
|
|
||||||
@use '../org-base'
|
@use '../default-org-mode'
|
||||||
|
|
||||||
@use '../themes/sienna-elegance' as *
|
@use '../themes/sienna-elegance' as *
|
||||||
@use '../fonts' as fonts
|
@use '../fonts' as fonts
|
||||||
@use '../mixins' as mixins-basic
|
@use '../mixins' as mixins-basic
|
||||||
|
|
|
||||||
86
categories/music.sass
Normal file
86
categories/music.sass
Normal file
|
|
@ -0,0 +1,86 @@
|
||||||
|
@use "sass:map"
|
||||||
|
@use "sass:color"
|
||||||
|
|
||||||
|
@use '../default-org-mode'
|
||||||
|
@use '../themes/muted_pulse' as *
|
||||||
|
@use '../fonts' as fonts
|
||||||
|
@use '../mixins' as mixins-basic
|
||||||
|
|
||||||
|
@include mixins-basic.set-header-sizes($default-header-sizes)
|
||||||
|
@include mixins-basic.set-header-colors($default-header-colors)
|
||||||
|
@include mixins-basic.set-header-margins-sides($default-header-margins-sides)
|
||||||
|
@include mixins-basic.set-header-margins-vertical($default-header-margins-vertical)
|
||||||
|
|
||||||
|
|
||||||
|
/* Base Styles */
|
||||||
|
body
|
||||||
|
font-family: $primary-font
|
||||||
|
color: $text-color
|
||||||
|
background-color: $background-color
|
||||||
|
|
||||||
|
/* Link Styles */
|
||||||
|
a
|
||||||
|
color: $anchor-color
|
||||||
|
|
||||||
|
&:hover
|
||||||
|
color: $anchor-hover-color
|
||||||
|
|
||||||
|
// Lists
|
||||||
|
ul, ol
|
||||||
|
padding-left: $list-padding-left
|
||||||
|
|
||||||
|
// Blockquotes
|
||||||
|
blockquote
|
||||||
|
border-color: $secondary-color
|
||||||
|
color: color.adjust($text-color, $lightness: 10%)
|
||||||
|
font-family: $secondary-font
|
||||||
|
|
||||||
|
// Tables
|
||||||
|
table
|
||||||
|
color: $text-color
|
||||||
|
|
||||||
|
th, td
|
||||||
|
border-color: $table-border-color
|
||||||
|
|
||||||
|
th
|
||||||
|
background-color: $table-header-bg
|
||||||
|
color: $text-color
|
||||||
|
|
||||||
|
tr:nth-child(even)
|
||||||
|
background-color: color.adjust($background-color, $lightness: 5%)
|
||||||
|
|
||||||
|
/* Code Block Styles */
|
||||||
|
pre, code
|
||||||
|
background-color: $code-background-color
|
||||||
|
color: $code-text-color
|
||||||
|
|
||||||
|
font-family: $secondary-font
|
||||||
|
|
||||||
|
/* Header Styles */
|
||||||
|
h1, h2, h3, h4, h5, h6
|
||||||
|
font-family: $secondary-font
|
||||||
|
|
||||||
|
h3
|
||||||
|
a
|
||||||
|
color: color.adjust($anchor-color, $lightness: -12%)
|
||||||
|
&:hover
|
||||||
|
color: color.adjust($anchor-hover-color, $lightness: -12%)
|
||||||
|
|
||||||
|
// Notes
|
||||||
|
.note
|
||||||
|
background-color: $note-background-color
|
||||||
|
border-color: $note-border-color
|
||||||
|
color: $text-color
|
||||||
|
|
||||||
|
div#postamble
|
||||||
|
border-color: $note-border-color
|
||||||
|
color: color.adjust($note-border-color, $lightness: 20%)
|
||||||
|
|
||||||
|
/* Table of Contents Link */
|
||||||
|
.toc
|
||||||
|
color: $primary-color
|
||||||
|
|
||||||
|
div#table-of-contents ul li a
|
||||||
|
color: $toc-anchor-color
|
||||||
|
&:hover
|
||||||
|
color: $toc-anchor-hover-color
|
||||||
Loading…
Add table
Reference in a new issue