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: black; | |
/* ========================================================================== */ | |
/* ================================= OWN CSS ================================ */ | |
/* ========================================================================== */ | |
// variables are defined within css_0 | |
/* all headers and the numbering before it */ | |
h1, h2, h3, .header-section-number { | |
color: black; | |
} | |
/* figure captions color */ | |
.figure-caption, .sidebar-title{ | |
color: black; | |
} | |
/* 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: black; | |
} | |
/* 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: black; | |
} | |
/* 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_Light; | |
animation-duration: 1s; | |
transform-origin: left; | |
} | |
@keyframes scale_In_X_Light { | |
0% { | |
color: black; | |
transform: scaleX(1.1); | |
} | |
50% { | |
color: gray; | |
transform: scaleX(1.3); | |
} | |
100% { | |
color: black; | |
transform: scaleX(1); | |
} | |
} | |
.h1:hover, h2:hover, h3:hover, .header-section-number:hover, .title:hover { | |
color: black; | |
font-weight: 633; | |
transform-origin: left; | |
} | |
.gls{ | |
color: black; | |
} | |
// animation in the acknowledgements.qmd | |
#bismillah_Anim{ | |
background-color: rgb(20, 218, 96); | |
} | |
#mosque_Anim{ | |
background-color: transparent; | |
} | |
/* the feedback <a> above the right bar */ | |
#feedback_A{ | |
color: black; | |
} | |
// simmilar to .ionicon > path or .ionicon path | |
.ionicon :is(path){ | |
stroke: black | |
} | |
.ionicon :is(circle){ | |
fill: black | |
} | |
// the font color of the tooltip | |
#popper_Tooltip_Gen pre{ | |
color: var(--shiny_White); | |
} | |