blob: 59a9d8a8fbca6325ef9b338ef5e2c8e7e75995b9 (
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
|
table
{
border: 1px outset;
border-spacing: 0px;
border-collapse: separate;
}
td, th
{
border: 1px inset
}
// Copied over from Server/Plugins/APIDump/main.css to make the pages look like the API docs:
html
{
background-color: #C0C0C0;
}
pre
{
border: 1px solid #ccc;
background-color: #eee;
-moz-tab-size: 2;
-o-tab-size: 2;
-webkit-tab-size: 2;
-ms-tab-size: 2;
tab-size: 2;
}
body
{
min-width: 400px;
max-width: 1200px;
width: 95%;
margin: 10px auto;
background-color: white;
border: 4px #FF8C00 solid;
border-radius: 20px;
font-family: Calibri, Trebuchet MS;
}
header
{
text-align: center;
font-family: Segoe UI Light, Helvetica;
}
footer
{
text-align: center;
font-family: Segoe UI Light, Helvetica;
}
#content, #timestamp
{
padding: 0px 25px 25px 25px;
}
|