Spaces:
Running
Running
/*-- scss:defaults --*/ | |
// see: https://quarto.org/docs/output-formats/html-themes.html | |
// see: https://github.com/twbs/bootstrap/blob/main/scss/_variables.scss | |
// Base document colors | |
$body-bg: black; | |
// shining white font color | |
$body-color: rgb(255, 253, 250); | |
$toc-color: rgb(236, 255, 127); | |
/* ========================================================================== */ | |
/* ================================= OWN CSS ================================ */ | |
/* ========================================================================== */ | |
// variables are defined within css_0 | |
/* all headers and the numbering before it */ | |
h1, h2, h3, .header-section-number { | |
color: var(--cl_Neon_Green); | |
} | |
/* figure captions color */ | |
.figure-caption, .sidebar-title{ | |
color:var(--shiny_White); | |
} | |
// image backgrounds | |
.img-fluid { | |
background-color: var(--shiny_White); | |
// mix-blend-mode: lighten; | |
} | |
/* the colors of the left side bar - here only the big titles */ | |
.sidebar-menu-container > | |
ul.list-unstyled > | |
li.sidebar-item > | |
div.sidebar-item-container > | |
a { | |
color: var(--cl_Neon_Green); | |
} | |
/* the colors of the left side bar - here the sub entries */ | |
.sidebar-menu-container > | |
ul.list-unstyled > | |
li.sidebar-item > | |
ul.collapse > | |
li.sidebar-item > | |
div.sidebar-item-container > | |
a { | |
color: var(--shiny_White); | |
} | |
/* animation for all header and titles - the title class has to be added seperately as well */ | |
.h1:active, h2:active, h3:active, .header-section-number:active, .title:active { | |
animation-name: scale_In_X; | |
animation-duration: 1s; | |
transform-origin: left; | |
} | |
@keyframes scale_In_X { | |
0% { | |
color: var(--shiny_White); | |
transform: scaleX(1.1); | |
} | |
50% { | |
color: var(--cl_Neon_Green); | |
transform: scaleX(1.3); | |
} | |
100% { | |
color: var(--shiny_White); | |
transform: scaleX(1); | |
} | |
} | |
.h1:hover, h2:hover, h3:hover, .header-section-number:hover, .title:hover { | |
color: var(--shiny_White); | |
font-weight: 633; | |
transform-origin: left; | |
} | |
.gls{ | |
color: var(--shiny_White) | |
} | |
// animation in the acknowledgements.qmd | |
#bismillah_Anim{ | |
background-color: transparent; | |
} | |
#mosque_Anim{ | |
background-color: transparent; | |
} | |
/* the feedback <a> above the right bar */ | |
#feedback_A{ | |
color: var(--shiny_White); | |
} | |
// simmilar to .ionicon > path or .ionicon path | |
.ionicon :is(path){ | |
stroke: var(--cl_Neon_Green); | |
} | |
.ionicon :is(circle){ | |
fill: var(--cl_Neon_Green); | |
} | |
#popper_Tooltip_Gen pre { | |
color: black; | |
} | |
// the font color of the tooltip | |
#popper_Tooltip_Gen pre { | |
color: var(--shiny_White); | |
} |