-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathgds.css
168 lines (126 loc) · 3.15 KB
/
gds.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
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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
/************
gdstheme
Styles for Xaringan slides with Government Digital Services theme
https://github.com/matt-dray/gdstheme
May 2019
/************
/* Text slide (default) */
.remark-slide-content {
background-color: #ebebeb; /* grey background */
color: #000; /* black text */
border-bottom: 50px solid #2372b6; /* blue bottom border */
font-size: 40px; /* regular text size */
padding: 0 60px 0 60px; /* space on top, left, right, bottom*/
}
/* Heading slide (inverse) */
.inverse {
background-color: #2372b6; /* blue background */
color: #fff; /* white text*/
text-shadow: 0 0 0; /* no text shadow */
border-bottom: 0; /* no border */
font-size: 90px; /* large text size */
font-weight: bold; /* headings are bold */
}
/* Title slide */
.title-slide {
background-color: #ebebeb; /* grey background */
color: #000; /* black text */
border-bottom: 0; /* no border */
text-shadow: 0 0 0; /* no text shadow */
font-size: 50px; /* intermediate text size */
font-weight: normal; /* not bold */
line-height: 15pt; /* separation between lines of text */
}
/* Code blocks */
.remark-code {
background: #f8f8f8;
border-radius: 10px;
padding: 1px;
}
/* Inline code */
.remark-inline-code{
background: #f8f8f8;
border-radius: 10px;
padding: 1px;
}
/* Hyperlinks */
a, a > code {
color: #0009FF; /* hyperlinks are blue */
text-decoration: underline; /* hyperlinks are underlined */
}
/* Slide numbers */
.remark-slide-number {
display: none; /* remove them */
}
/* Footnotes */
.footnote {
position: absolute;
bottom: 3em;
padding-right: 4em;
font-size: 90%;
}
/* Code highlighting */
.remark-code-line-highlighted { background-color: #ffff88; }
/* Two-column layout */
.left-column {
color: #777;
width: 20%;
height: 92%;
float: left;
}
.left-column h2:last-of-type, .left-column h3:last-child {
color: #000;
}
.right-column {
width: 75%;
float: right;
padding-top: 1em;
}
.pull-left {
float: left;
width: 47%;
}
.pull-right {
float: right;
width: 47%;
}
.pull-right ~ * {
clear: both;
}
/* Media insertion*/
img, video, iframe {
max-width: 100%;
}
/* Blockquote */
blockquote {
border-left: solid 5px lightgray;
padding-left: 1em;
}
/* Tables */
.remark-slide table {
margin: auto;
width: 100%;
margin-left: 0;
margin-right: 0;
border-top: 1px solid #666;
border-bottom: 1px solid #666;
}
.remark-slide table thead th { border-bottom: 1px solid #ddd; }
th, td { padding: 5px; }
.remark-slide thead, .remark-slide tfoot, .remark-slide tr:nth-child(even) {
background: #eee
}
/* Extra tags */
.black { color: #000; } /* black text intended for heading contrast */
.bold { font-weight: bold; } /* bold for speaker's name on first/last slides */
/* Can leave this alone */
@page { margin: 0; }
@media print {
.remark-slide-scaler {
width: 100% !important;
height: 100% !important;
transform: scale(1) !important;
top: 0 !important;
left: 0 !important;
}
}