File size: 2,090 Bytes
a67ae61
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
fd5f45b
 
 
 
 
 
 
 
 
 
a67ae61
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
/*-- 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;
}