generated from KopfLab/project_template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
stylesheet.css
66 lines (52 loc) · 853 Bytes
/
stylesheet.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
/* Font sizes */
body{ /* Normal */
font-size: 14px;
}
h1 {
font-size: 24px;
color: DarkBlue;
}
h2 {
font-size: 18px;
color: DarkBlue;
}
h3 {
font-size: 16px;
font-style: serif;
color: DarkBlue;
}
code.r{
font-size: 12px;
}
/* git hub markdown style table formatting */
table {
padding: 0;
}
table tr {
border-top: 1px solid #cccccc;
background-color: white;
margin: 0;
padding: 0;
}
table tr:nth-child(2n) {
background-color: #f8f8f8;
}
table tr th {
font-weight: bold;
border: 1px solid #cccccc;
text-align: left;
margin: 0;
padding: 6px 13px;
}
table tr td {
border: 1px solid #cccccc;
text-align: left;
margin: 0;
padding: 6px 13px;
}
table tr th :first-child, table tr td :first-child {
margin-top: 0;
}
table tr th :last-child, table tr td :last-child {
margin-bottom: 0;
}