forked from leofn/combate_desinformacao_2024
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcustom.scss
123 lines (95 loc) · 2.1 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
/*-- scss:defaults --*/
// importing fonts
@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inconsolata&family=Lato&display=swap');
// fonts
$font-family-sans-serif: 'Lato', Tahoma, sans-serif !default;
// headings
$presentation-heading-font: 'Montserrat', Tahoma, sans-serif !default;
$presentation-heading-color: #4c83b6 !default;
$h1-font-size: 1.3em !default;
$h2-font-size: 1.1em !default;
$h3-font-size: 1.05em !default;
//code
$code-color: #88398A !default;
$font-family-monospace: 'Inconsolata', monospace !default;
// general
$body-bg: #fff;
$link-color: #2a547c;
$presentation-font-size-root: 35pt;
$body-color: #80868b;
/*-- scss:rules --*/
.reveal pre code {
background-color: #f5faff;
font-size: 1em;
padding: 0em;
line-height: 1.5em;
}
.codeyml {
font-size: 36pt !important;
line-height: 1em !important;
}
.reveal pre.sourceCode code {
background-color: #f5faff;
padding: 0px 0px;
white-space: pre;
}
.reveal .footer > * {
color: #383c41;
}
.subtitle {
color: $presentation-heading-color;
font-size: $h2-font-size;
}
.date {
font-size: 1em;
}
h1 {
font-size: 1.5em !important;
}
.center-y{
text-align: center;
}
h1 strong{
color: #0f4d87;
font-family: 'Fira Code', monospace;
}
.date strong{
color: #2f7bc2;
font-family: 'Fira Code', monospace;
font-size: 1em;
}
.reveal code {
font-family: 'Fira Code', monospace;
}
.reveal a{
text-decoration: underline;
text-decoration-style: dotted;
text-decoration-thickness: 0.04em;
}
.aboutmeslide{
font-size: 0.8em;
}
.rstudioslide{
font-size: 30pt;
}
li::marker .wow{
content: "🤯";
padding-inline-start: 1ch;
}
.slide-logo {
display: block !important;
position: fixed !important;
top: 0 !important;
right: 10px !important;
max-height: 15% !important;
height: 100% !important;
width: auto !important;
color: $body-color !important;
}
.slide-number, .reveal.has-logo .slide-number {
bottom: 10px !important;
right: 10px !important;
top: unset !important;
color: $body-color !important;
}