-
Notifications
You must be signed in to change notification settings - Fork 8
/
drobo-utils.css
155 lines (126 loc) · 2.75 KB
/
drobo-utils.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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
/*
This style sheet is a slight modification of voidspace.css.
mods by Peter Silva...
Voidspace.css authors:
:Authors: Ian Bicking, Michael Foord
:Contact: [email protected]
:Date: 2005/08/26
:Version: 0.1.0
:Copyright: This stylesheet has been placed in the public domain.
Stylesheet for Docutils.
Based on ``blue_box.css`` by Ian Bicking
and ``html4css1.css`` revision 1.46.
*/
@import url(html4css1.css);
body {
font-family: "Lucida Grande", "Lucida Sans", Verdana, sans-serif;
/* font-family: Arial, sans-serif; */
background-color: #333333;
color: #cccccc;
}
em, i {
/* Typically serif fonts have much nicer italics */
font-family: Times New Roman, Times, serif;
}
a:link {
color: white;
}
a:visited {
color: white;
}
a.target {
color: white;
}
a.toc-backref {
text-decoration: none;
color: white;
}
a.toc-backref:hover {
background-color: inherit;
}
a:hover {
background-color: #cccccc;
}
div.attention, div.caution, div.danger, div.error, div.hint,
div.important, div.note, div.tip, div.warning {
background-color: #cccccc;
padding: 3px;
width: 80%;
}
div.admonition p.admonition-title, div.hint p.admonition-title,
div.important p.admonition-title, div.note p.admonition-title,
div.tip p.admonition-title {
text-align: center;
background-color: #999999;
display: block;
margin: 0;
}
div.attention p.admonition-title, div.caution p.admonition-title,
div.danger p.admonition-title, div.error p.admonition-title,
div.warning p.admonition-title {
color: #cc0000;
font-family: sans-serif;
text-align: center;
background-color: #999999;
display: block;
margin: 0;
}
h1, h2, h3, h4, h5, h6 {
font-family: Helvetica, Arial, sans-serif;
border: thin solid black;
/* This makes the borders rounded on Mozilla, which pleases me */
-moz-border-radius: 8px;
-webkit-border-radius: 8px;
padding: 4px;
background-color: black;
color: white;
width: 70%;
text-align: center;
}
h1 {
border: medium solid black;
color: white;
}
h1 a.toc-backref, h2 a.toc-backref {
color: white;
}
h2 {
border: medium solid black;
color: white;
}
h3, h4, h5, h6 {
color: white;
}
h3 a.toc-backref, h4 a.toc-backref, h5 a.toc-backref,
h6 a.toc-backref {
color: white;
}
h1.title {
text-align: center;
/* background-color: #444499; */
color: #eeeeee;
border: thick solid black;
-moz-border-radius: 20px;
-webkit-border-radius: 20px;
}
table.footnote {
padding-left: 0.5ex;
}
table.citation {
padding-left: 0.5ex
}
pre.literal-block, pre.doctest-block {
background: #cccccc;
border: thin black solid;
padding: 5px;
color: black;
}
.image img { border-style : solid;
border-width : 2px;
}
h1 tt, h2 tt, h3 tt, h4 tt, h5 tt, h6 tt {
font-size: 100%;
}
code, tt {
color: #000066;
}