-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy paththeme.css
executable file
·128 lines (103 loc) · 2 KB
/
theme.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
@import url(https://fonts.googleapis.com/css?family=Fira+Sans:300,300i,400,400i,500,500i,700,700i);
@import url(//cdn.jsdelivr.net/npm/hack-font@3.3.0/build/web/hack-subset.css);
@import url(https://fonts.googleapis.com/css?family=Montserrat);
/* General */
body {
font-family: 'Fira Sans','Droid Serif', 'Palatino Linotype', 'Book Antiqua', Palatino, 'Microsoft YaHei', 'Songti SC', serif, Montserrat;
}
a, a > code {
color: #4393C3;
text-decoration: none;
}
strong {
color: #000000;
}
em {
color: #08519C;
font-style: normal;
font-weight: bold;
}
del {
color: #E5E5E5;
text-decoration: none;
font-weight: bold;
}
/* General slides */
.remark-code {
font-family: 'Hack', 'Lucida Console', Monaco, monospace;
font-size: 65%;
}
.remark-inline-code{
background: #F5F5F5; /* lighter */
border-radius: 3px;
padding: 4px;
}
.remark-slide-content {
color: #474747;
font-weight: 300;
font-size: 180%;
padding: 1em 2em 1em 2em
}
.remark-slide-content h1{
color: #000000;
font-family: Montserrat;
}
.remark-slide-content h2{
color: #000000;
font-family: Montserrat;
}
/* Images */
img, video, iframe {
max-width: 100%;
}
/* Lists */
li {
padding: 10px;
display: block;
}
li::before {
content: "- ";
font-weight: bold;
}
/* Title slide */
.title-slide {
background-color: #FFFFFF;
}
.title-slide .remark-slide-number {
display: none;
}
.title-slide h1 {
color: #101645;
font-size: 72px;
font-family: Montserrat;
text-shadow: none;
text-align: center;
vertical-align: bottom;
}
.title-slide h2 {
color: #101645;
text-shadow: none;
font-family: Montserrat;
font-size: 48px;
text-align: center;
font-weight: bold;
}
.title-slide h3 {
color: #000000;
text-shadow: none;
font-family: Montserrat;
font-size: 36px;
text-align: center;
margin-bottom: 10px;
}
.title-slide h4 {
color: #EDEEEF;
text-shadow: none;
font-family: Montserrat;
font-size: 24px;
text-align: center;
margin-bottom: 10px;
}
.hidden {
visibility: hidden;
}