-
Notifications
You must be signed in to change notification settings - Fork 1
/
docs.css
115 lines (97 loc) · 2.11 KB
/
docs.css
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
112
113
114
115
@media all {
body {
font-family: "Constantia", "Times", "Georgia", serif;
font-size: 11pt;
text-align: center;
margin: 0px;
background-color: #f3f3f3;
}
#content {
text-align: left;
margin: 0 auto;
}
.documentation {
float: left;
line-height: 1.4em;
}
.documentation h1, .documentation h2 {
line-height: 1.4em;
font-kerning: normal;
}
.documentation h1 {
font-size: 2.5em;
font-weight: normal;
}
.documentation h2 {
font-weight: bold;
}
.documentation h3 {
font-weight: bold;
font-style: italic;
line-height: 1.2em;
}
.documentation h4 {
font-weight: normal;
font-size: 1.1em;
line-height: 1.2em;
font-style: italic;
}
.documentation p {
margin-top: 0em;
margin-left: 1em;
font-stretch: expanded;
}
.documentation pre {
font-family: "Droid Sans Mono", "Courier New", monospace;
font-size: 10pt;
line-height: 1.4em;
padding-left: 2em;
}
.code {
float: left;
font-family: "Droid Sans Mono", "Courier New", monospace;
white-space: pre;
font-size: 10pt;
background-color: #ececec;
margin: 0;
}
.divider {
clear: both;
height: 0;
line-height: 0;
}
.intra-wiki {
color: black;
text-decoration: none;
border-bottom: solid 1px gray;
}
.highlight {
background-color: yellow;
}
a {
color: black;
text-decoration: underline;
}
pre.prettyprint {
border: 0px none;
}
}
@media screen and (min-width: 700px) {
pre.prettyprint {
border-left: 1px solid #acacac;
}
}
@media print, screen and (max-width: 700px) {
pre.prettyprint {
padding: 1em 0em 0em 1em !important;
background-color: #f3f3f3;
}
}
@media print {
body {
background-color: transparent;
}
pre.prettyprint {
background-color: transparent;
}
}