-
Notifications
You must be signed in to change notification settings - Fork 249
/
style.css
87 lines (73 loc) · 1.91 KB
/
style.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
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
/*********************************************
* Slide numbers
*********************************************/
.reveal .slide-number {
display: inline-block;
right: 37px;
bottom: 20px;
text-align: center;
line-height: 0px;
border-radius: 50%;
font-size: 12px;
width: 36px;
height: 36px;
font-size: 10px;
background: none;
color: var(--r-link-color);
}
.reveal .slide-number span {
margin: 0;
padding: 0;
}
.reveal .slide-number a {
display: inline-block;
padding-top: 50%;
padding-bottom: 50%;
}
/*********************************************
* Kbd for key strokes
*********************************************/
kbd {
display: inline-block;
padding: 2px 14px;
background-color: darkgray;
font-family: Arial, sans-serif;
border-radius: 4px;
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2), 0 2px 0 0 rgba(255, 255, 255, 0.7) inset;
text-shadow: none;
font-size: 0.85em;
font-weight: 700;
white-space: nowrap;
}
/*********************************************
* Inline code
*********************************************/
/*
Inline code is also used to escape math blocks.
The rendered math is then embedded within a span
and should not receive the code background.
*/
code:not(:empty):not(:has(*)):not(pre code) {
background-color: darkgray;
padding: 4px 4px 4px 4px;
border-radius: 4px;
text-shadow: none;
font-family: courier;
}
/*********************************************
* Fragments
*********************************************/
.reveal .slides section .fragment.appear-disappear {
opacity: 0;
display: none; }
.reveal .slides section .fragment.appear-disappear.current-fragment {
opacity: 1;
display: inline; }
/*********************************************
* Print
*********************************************/
@media print {
.presentation-only, .audio-controls, .slide-menu-button, .slide-number {
display: none!important;
}
}