1/*
2 * Convert transparent color to hex value by given background
3 */
4h6 {
5  font-size: 11px;
6  line-height: 14px;
7  font-weight: bold;
8  color: rgba(255, 255, 255, 0.7); }
9
10h4 {
11  font-size: 14px;
12  line-height: 21px;
13  letter-spacing: 0.4px;
14  color: #dedede;
15  font-weight: normal; }
16
17h5 {
18  font-size: 12px;
19  color: rgba(255, 255, 255, 0.7);
20  font-weight: normal; }
21
22h3 {
23  font-size: 16px;
24  line-height: 21px;
25  font-weight: normal;
26  letter-spacing: 0.6px;
27  color: white; }
28
29h2 {
30  font-size: 21px;
31  line-height: 28px;
32  font-weight: normal;
33  letter-spacing: 0.6px;
34  color: white; }
35
36h1 {
37  font-size: 30px;
38  line-height: 35px;
39  font-weight: normal;
40  letter-spacing: 0.6px;
41  color: white; }
42
43body, p, span, div {
44  font-family: Helvetica, Arial, sans-serif;
45  font-size: 14px;
46  color: black;
47  font-weight: normal;
48  line-height: 21px; }
49
50code {
51  border: 1px solid rgba(255, 255, 255, 0.3);
52  background-color: #343638;
53  padding: 7px;
54  margin: 14px 0;
55  display: block;
56  font-family: "Courier New",Courier,monospace;
57  color: white;
58  border-radius: 3.5px; }
59
60p {
61  margin: 14px 0; }
62
63ul {
64  display: block;
65  list-style-type: disc;
66  list-style-position: outside;
67  margin: 0;
68  padding: 0 0 0 2em; }
69
70ol {
71  display: block;
72  list-style-type: decimal;
73  list-style-position: outside;
74  margin: 0;
75  padding: 0 0 0 2em; }
76  ol > ol {
77    list-style-type: lower-alpha; }
78    ol > ol > ol {
79      list-style-type: lower-roman; }
80