-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
41 lines (35 loc) · 861 Bytes
/
styles.css
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
body {
--clickable-heading-margin-multiplier: 10;
}
.theme-dark {
--highlight-header-primary: #FBF0D9;
--highlight-header-secondary: #5F4B32;
}
.theme-light {
--highlight-header-primary: #5F4B32;
--highlight-header-secondary: #FBF0D9;
}
.clickable-heading {
cursor: pointer;
display: block;
color: var(--text-normal);
padding: 2px 10px;
font-size: 90%;
width: fit-content;
transition: background-color 0.3s ease;
margin-left: var()
}
.unclickable-heading {
display: block;
color: var(--text-normal);
margin: 2px 0;
font-size: 90%;
transition: background-color 0.3s ease;
}
.clickable-heading:hover {
background-color: var(--background-modifier-hover);
}
.highlighted-heading {
background-color: var(--highlight-header-primary);
color: var(--highlight-header-secondary);
}