summaryrefslogtreecommitdiff
path: root/src/style.css
blob: 7d704d5e835cf3cf9d752fa06e0530a2d4f6fbd9 (plain)
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
body{ /* Normal  */
	  font-family: Helvetica, sans-serif;
      font-size: 18px;
	  margin-bottom: 1em;
  }
td {  /* Table  */
  font-size: 22px;
}
div.section {
	margin-bottom: 1em;
}

ul.nav {
  font-size: 22px;
}

h1.title {
  font-size: 38px;
  color: DarkRed;
  font-weight: bold;
  margin-bottom: 1em;
  margin-top: 1em;
}
h1 { /* Header 1 */
  font-size: 28px;
  color: Black;
  font-weight: bold;
  margin-bottom: 1em;
  margin-top: 1em;
}
h2 { /* Header 2 */
    font-size: 22px;
  color: Black;
  margin-bottom: 1em;
  margin-top: 1em;
}
h3 { /* Header 3 */
  font-size: 18px;
  color: Black;
}

h4 { /* Header 4 */
  font-size: 18px;
  color: Black;
  margin-bottom: 1em;
}

code.r{ /* Code block */
    font-size: 16px;
	margin-bottom: 1em;
}
pre { /* Code block - determines code spacing between lines */
    font-size: 16px;
}

a:link { color:#17547f; text-decoration: none;}
a:visited { color:#17547f; text-decoration: none;}
a:hover { color:#17547f; text-decoration: underline;}