-
Notifications
You must be signed in to change notification settings - Fork 0
/
custom.css
70 lines (56 loc) · 1.07 KB
/
custom.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
@import url(https://fonts.googleapis.com/css?family=Yanone+Kaffeesatz);
@import url(https://fonts.googleapis.com/css?family=Droid+Serif:400,700,400italic);
@import url(https://fonts.googleapis.com/css?family=Ubuntu+Mono:400,700,400italic);
body {
font-family: 'Droid Serif';
line-height: 1.5;
}
h1, h2, h3 {
font-family: 'Yanone Kaffeesatz';
font-weight: normal;
}
h1 {
margin-bottom: 0rem;
}
.remark-code, .remark-inline-code {
font-family: 'Ubuntu Mono';
}
.project-lead {
background-color: lightblue;
}
.exercise {
background-color: lightblue;
font-style: italic;
}
th {
background-color: lightblue;
padding-left: 1em;
padding-right: 1em;
}
td {
padding-left: 1em;
padding-right: 1em;
}
div.flex-row {
display: flex;
flex-direction: row;
margin-top: 1rem;
margin-bottom: 1rem;
}
div.flex-col {
margin-left: 1rem;
margin-right: 1rem;
}
div.wide {
width: 40%;
}
div.narrow {
width: 25%;
}
p.hanging-indent {
padding-left: 2rem;
text-indent: -2rem;
}
img.column {
width: 100%;
}