-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathextra.css
More file actions
94 lines (79 loc) · 1.55 KB
/
extra.css
File metadata and controls
94 lines (79 loc) · 1.55 KB
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
@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic);
@import url(https://fonts.googleapis.com/css?family=Ubuntu+Mono:400,700,400italic);
.remark-slide {
font-family: 'Lato'
}
.title-slide h3 {
font-weight: 400;
font-size: 26px;
}
.remark-slide-content {
font-size: 28px;
padding: 15px 55px 5px 55px;
}
.remark-slide h1 {
font-size: 48px;
}
.remark-slide-number {
font-size: 18px;
}
/* darker border under table header */
.remark-slide table thead th {
border-bottom: 1px solid #666;
}
.pull-left-64 {
padding: 0;
float: left;
width: 64%;
}
.pull-right-30 {
float: right;
width: 30%;
}
.pull-right-64 {
padding: 0;
float: right;
width: 64%;
}
.pull-left-30 {
float: left;
width: 30%;
}
/* more padding in table cells and bulleted lists */
.remark-slide th, td {
padding: 5px 15px;
}
.remark-slide ul li, ol li {
padding: 5px 5px;
}
.remark-inline-code {
font-family: 'Ubuntu Mono';
font-size: 32px;
}
/* r output */
.remark-code {
font-family: 'Ubuntu Mono';
font-size: 24px;
color: rgb(136, 0, 0);
}
/* r input */
.r.hljs {
background: #F5F5F5; /* lighter */
/* background: #e7e8e2; darker */
border-radius: 3px;
padding: 4px;
}
/* squash captions (when use out.width or fig.align in knitr chunk, image gets
put in img div. Since need to use fig.cap to specify alt text, a caption is
then created, so use css to hide) */
.caption {
display: none;
}
.footer {
color: #F92672;
position: fixed;
left: 20px;
bottom: 10px;
text-align: left;
width: 90%;
}