about summary refs log tree commit diff
path: root/static/css/custom.css
blob: ece545763de7c456e1b9dfa237c4397c12ab2e73 (plain) (blame)
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
body {
  margin: 1em auto;
  max-width: 46rem;
  line-height: 1.6;
  font-family: sans-serif;
  font-size: 1rem;
}

h1 {
  font-size: 1.2rem;
}

h2 {
  font-size: 1.1rem;
  border-left: 5px solid #ffc832;
  padding-left: 0.2em;
}

h3 {
  font-size: 1rem;
  font-weight: normal;
}

a {
  color: rgb(56, 115, 173);
}

a:link,
a:hover,
a:focus,
a:active {
  text-decoration: underline;
}

code {
  font-family: monospace;
  font-size: 0.8rem;
  overflow-x: auto;
  padding: 0.2rem 0.5rem;
  margin: 0 0.2rem;
  border-radius: 4px;
}

pre {
  overflow: auto;
  font-size: 0.8rem;
  overflow-x: auto;
  margin: 0 0.2rem;
}

pre > code {
  display: block;
}

section.times time {
  font-style: oblique;
  float: right;
}

section.times h3 {
  display: inline;
  font-size: 1em;
}

p.date {
  display: row;
  font-style: italic;
  font-size: 0.9rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  word-break: normal;
}

th, td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}
th {
    background-color: #f2f2f2;
}
tr:nth-child(even) {
    background-color: #f9f9f9;
}
tr:nth-child(odd) {
    background-color: #ffffff;
}
thead {
  color: #000;
  font-style: bold;
  text-align: left;
}

blockquote {
  font-style: italic;
  margin: 0 0 1.5em;
  padding-left: 1em;
  border-left: 0.2em solid #bdbdbd;
}

ul {
  display: block;
  list-style-type: disc;
}

li {
  display: list-item;
}