Spaces:
Running
Running
File size: 2,695 Bytes
a67ae61 fd5f45b d6b8d19 fd5f45b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 |
/*-- 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);
} |