blob: 463eebc9f97ae2ef6a0e35d484880fe17f358933 (
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
|
body {
margin: 40px auto;
max-width: 650px;
line-height: 1.6;
font-size: 18px;
color: #454545;
background-color: #fafafa;
padding: 0 10px;
}
header, footer {
padding: 0.75em 1em;
margin: 1em 0;
background-color: #e1e1e1;
}
h1, h2, h3, h4, h5, h6 {
line-height: 1.2;
}
nav.offline ul, .breadcrumb {
list-style-type: none;
padding: 0;
margin: 0;
}
nav.offline li, .breadcrumb li {
display: inline;
}
nav.offline li+li {
margin-left: 1em;
}
.breadcrumb li+li:before {
content: " / ";
}
.fa-arrow-left:after {
content: "\25c4"; /* BLACK LEFT-POINTING POINTER */
}
.fa-arrow-right:after {
content: "\25ba"; /* BLACK RIGHT-POINTING POINTER */
}
|