forked from flatpak/xdg-desktop-portal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocbook.css
92 lines (85 loc) · 1.32 KB
/
docbook.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
body {
font-family: sans-serif;
max-width: 850px;
margin: auto;
}
h1.title {
}
.permission {
color: #ee0000;
text-decoration: underline;
}
.synopsis,
.classsynopsis {
background: #eeeeee;
border: solid 1px #aaaaaa;
padding: 0.5em;
}
.programlisting {
background: #eeeeff;
border: solid 1px #aaaaff;
padding: 0.5em;
}
.variablelist {
padding: 4px;
margin-left: 3em;
}
.variablelist td:first-child {
vertical-align: top;
}
td.shortcuts {
color: #770000;
font-size: 80%;
}
div.refnamediv {
margin-top: 2em;
}
div.toc {
border: 2em;
}
a {
text-decoration: none;
}
a:hover {
text-decoration: underline;
color: #ff0000;
}
div.table table {
border-collapse: collapse;
border-spacing: 0px;
border-style: solid;
border-color: #777777;
border-width: 1px;
}
div.table table td,
div.table table th {
border-style: solid;
border-color: #777777;
border-width: 1px;
padding: 3px;
vertical-align: top;
}
div.table table th {
background-color: #eeeeee;
}
@media (prefers-color-scheme: dark) {
html {
background-color: #222222;
color: #dddddd;
}
a {
color: #8886fa;
}
a:hover {
color: #5a57fa;
}
.synopsis,
.classsynopsis {
background: #161616;
border: solid 1px #aaaaaa;
}
.programlisting {
background: #161616;
border: solid 1px #aaaaff;
}
}