blob: 31247d3e2776d0236ea8f03e5ceae243b32e5d22 (
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
59
60
61
62
63
64
65
66
67
68
|
body {
color: #333;
margin: 6em;
font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
a {
color: #437ABE;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
h1, h2, h3 {
margin-left: -1em;
}
h1 {
border-bottom: 1px #CCC solid;
font-size: 2.5em;
}
h2 {
font-size: 2em;
}
h3 {
font-size: 1.5em;
}
#top {
border: none;
}
div.indexColumn {
display: inline-block;
width: 30%;
vertical-align: top;
}
@media (max-width: 700px) {
div.indexColumn {
display: block;
width: 100%;
vertical-align: top;
}
.indexHeader {
padding-left: 3em;
}
div, .section {
border: none;
}
.legacydocsnote {
background-color: #ffdddd;
border: 2px solid #ff0000;
text-align: center;
margin: 1em auto;
padding: 1em;
width: 80%;
}
.legacydocsnote::before {
content: "⚠️";
font-size: 200%;
vertical-align: middle;
}
|