-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
54 lines (45 loc) · 925 Bytes
/
styles.css
File metadata and controls
54 lines (45 loc) · 925 Bytes
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
/* Preventing FOUC https://unocss.dev/integrations/runtime */
[un-cloak] {
display: none;
}
/* FIX: hide customcontrols when printing slides, bug https://github.com/rajgoel/reveal.js-plugins/issues/159 */
@media print {
#customcontrols {
display: none !important;
}
}
@media screen {
#customcontrols {
display: var(--display-customcontrols);
}
/* FIX: always show button to collapse custom controls */
#customcontrols button {
display: block !important;
}
#customcontrols ul {
bottom: 64px !important;
}
}
/* Workaround to improve sharpness of charts: https://github.com/chartjs/Chart.js/issues/2814 */
canvas {
box-sizing: initial !important;
}
/* reduce font size of sub-items */
li {
font-size: inherit;
}
li li {
font-size: 80%;
}
li li li {
font-size: 80%;
}
li li li li {
font-size: 80%;
}
li li li li li {
font-size: 80%;
}
figure caption {
font-size: 60%;
}