compsci_godot_albert/_share/media/sass/godot.sass

170 lines
3 KiB
Sass
Raw Normal View History

2024-11-29 06:13:49 +02:00
@use "sass:map"
@use "sass:color"
@use 'var2' as *
@use 'fonts' as fonts
@use '../../../../../../../_share/media/sass/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)
@include mixins-basic.remove-section-number(h2)
@include mixins-basic.remove-section-number(h4)
2024-11-27 04:24:34 +02:00
/* Base Styles */
body
2024-11-29 06:13:49 +02:00
font-family: $primary-font
font-size: 1em
2024-11-27 04:24:34 +02:00
line-height: 1.6
2024-11-29 06:13:49 +02:00
color: $text-color
background-color: $background-color
margin: 0 auto
max-width: 900px
padding: 1em
2024-11-27 04:24:34 +02:00
/* Link Styles */
a
color: $anchor-color
text-decoration: underline
2024-11-29 06:13:49 +02:00
text-underline-offset: 2px
&:hover
color: $anchor-hover-color
2024-11-27 04:24:34 +02:00
2024-11-29 06:13:49 +02:00
// Lists
2024-11-27 04:24:34 +02:00
ul, ol
2024-11-29 06:13:49 +02:00
padding-left: $list-padding-left
ul
margin: 1em 0em
list-style-type: disc
ol
margin: 1em .5em
list-style-type: decimal
2024-11-27 04:24:34 +02:00
li
margin-bottom: 0.5em
2024-11-29 06:13:49 +02:00
// Blockquotes
blockquote
border-left: 4px solid $secondary-color
padding-left: 1em
color: color.adjust($text-color, $lightness: 10%)
margin: 1.5em 0
font-family: $secondary-font
// Tables
table
width: 100%
border-collapse: collapse
margin-bottom: 1em
color: $text-color
th, td
padding: 0.75em
text-align: left
border: 1px solid $table-border-color
th
background-color: $table-header-bg
color: $text-color
tr:nth-child(even)
background-color: color.adjust($background-color, $lightness: 5%)
2024-11-27 04:24:34 +02:00
/* Code Block Styles */
pre, code
background-color: $code-background-color
2024-11-29 06:13:49 +02:00
color: $code-text-color
font-family: $secondary-font
2024-11-27 04:24:34 +02:00
border-radius: 4px
2024-11-29 06:13:49 +02:00
padding: 0.5em
display: block
2024-11-27 04:24:34 +02:00
overflow-x: auto
2024-11-29 06:13:49 +02:00
// Section
section
margin-bottom: 2em
2024-11-27 04:24:34 +02:00
2024-11-29 06:13:49 +02:00
/* Header Styles */
h1, h2, h3, h4, h5, h6
text-transform: capitalize
font-family: $secondary-font
2024-11-27 04:24:34 +02:00
font-weight: bold
2024-11-29 06:13:49 +02:00
h3
a
color: color.adjust($anchor-color, $lightness: -12%)
&:hover
text-decoration: none
color: color.adjust($anchor-hover-color, $lightness: -12%)
2024-11-27 04:24:34 +02:00
2024-11-29 06:13:49 +02:00
// Paragraphs
p
margin-bottom: 1em
// Notes
2024-11-27 04:24:34 +02:00
.note
background-color: $note-background-color
padding: 0.5em
border-left: 3px solid $note-border-color
margin-bottom: 1em
color: $text-color
2024-11-29 06:13:49 +02:00
div#postamble
border-top: 1px dashed $note-border-color
margin-top: 2em
padding-top: 1em
color: color.adjust($note-border-color, $lightness: 20%)
font-size: 0.9em
2024-11-27 04:24:34 +02:00
2024-11-29 06:13:49 +02:00
.outline-3
margin-left: .5em
2024-11-27 04:24:34 +02:00
2024-11-29 06:13:49 +02:00
.outline-4
margin-left: .5em
2024-11-27 04:24:34 +02:00
2024-11-29 06:13:49 +02:00
/* Table of Contents Link */
.toc
font-weight: bold
2024-11-27 04:24:34 +02:00
color: $primary-color
2024-11-29 06:13:49 +02:00
ul.links
padding-left: 2em
list-style-type: square
li
margin: 0
2024-11-27 04:24:34 +02:00
2024-11-29 06:13:49 +02:00
a
text-transform: capitalize
2024-11-27 04:24:34 +02:00
2024-11-29 06:13:49 +02:00
div#table-of-contents
ul
padding-left: 1em
margin: 0
list-style-type: none
2024-11-27 04:24:34 +02:00
2024-11-29 06:13:49 +02:00
li
margin: .4 0
2024-11-27 04:24:34 +02:00
2024-11-29 06:13:49 +02:00
a
color: $toc-anchor-color
text-transform: lowercase
text-decoration: none
2024-11-27 04:24:34 +02:00
2024-11-29 06:13:49 +02:00
&:hover
color: $toc-anchor-hover-color
2024-11-27 04:24:34 +02:00
h2
2024-11-29 06:13:49 +02:00
margin-left: 0
margin-bottom: .2em
text-transform: uppercase