-
Notifications
You must be signed in to change notification settings - Fork 0
/
slides.css
56 lines (45 loc) · 1.04 KB
/
slides.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
@font-face{
font-family: 'Droid Serif';
src: url('fonts/Droid_Serif/DroidSerif.ttf');
}
@font-face{
font-family: 'Droid Sans';
src: url('fonts/Droid_Sans/DroidSans.ttf');
}
@font-face{
font-family: 'Yanone Kaffeesatz';
src: url('fonts/Yanone_Kaffeesatz/YanoneKaffeesatz-Regular.ttf');
}
@font-face{
font-family: 'Ubuntu Mono';
src: url('fonts/Ubuntu_Mono/UbuntuMono-Regular.ttf');
}
body { font-family: 'Droid Serif' }
h1, h2, h3 {
font-family: 'Yanone Kaffeesatz';
font-weight: normal;
}
.remark-code, .remark-inline-code { font-family: 'Ubuntu Mono'; }
.remark-slide-content { font-family: 'Droid Sans'}
input[type=text] {
padding: 10px 15px;
box-sizing: border-box;
}
input[type=button] {
background-color: #528feb;
border: none;
color: white;
padding: 10px 15px;
text-decoration: none;
margin: 4px 2px;
cursor: pointer;
}
input[type=button]:hover {
background-color: #0d6aff;
color: white;
}
input[type=button][disabled] {
background-color: #dddddd;
color: rgb(112, 112, 112);
cursor: default;
}