-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcustom.scss
69 lines (57 loc) · 1.36 KB
/
custom.scss
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
$body-bg: #f4f1eb; // Light beige for a clean background
$body-color: #3b3a30; // Dark charcoal for body text
$link-color: #0066cc; // Vibrant blue for links, ensuring good contrast
$presentation-heading-color: #b22222; // Deep red for headings to stand out without harshness
$code-color: #fb5d42; // Dark navy for code for easy reading
$code-block-bg: #e8e6df; // Light warm gray for subtle code block contrast
$code-block-border-color: #4b4a48; // Medium gray for borders
/*-- scss:rules --*/
.reveal .slides section .fragment.semi-fade-out {
opacity: 1;
visibility: inherit;
&.visible {
opacity: 0.25;
visibility: inherit;
}
}
.sectionhead {
font-size: 1em;
text-align: center;
color: $presentation-heading-color;
font-family: $presentation-heading-font;
background-color: $body-bg;
margin: 1px;
padding: 2px;
width: 120px;
border-left: 10px solid;
}
.blackbox {
color: #000000;
background-color: transparent;
margin: 1px;
padding: 5px 2px 5px 2px;
height: 205px;
border: 2px solid;
}
.reveal .slides h2 {
margin: 12px 12px 30px 12px;
}
.reveal .slides p {
margin: 20px 12px 20px 12px;
}
.reveal .slides .Reactable {
background-color: $body-bg;
}
.reveal .slides .logos img {
max-height: 5em;
}
.Reactable .rt-table {
@extend .fragment;
font-size: 0.45em;
}
.rt-pagination {
font-size: small;
}
.reveal .slides .rt-td-inner {
padding: 2px 2px;
}