forked from PDLPorters/pdlporters.github.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpdl.css
278 lines (241 loc) · 3.93 KB
/
pdl.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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
/* * * * * * * * * * * * * * * *
* CSS for PDL Website.
*
*/
/*
* GENERAL
*/
body {
font-family: verdana, arial, sans-serif;
padding: 0;
margin: 0;
}
img { border: none; }
dt { font-weight: bold; }
td { vertical-align: top; }
em { color: #347; }
a {
color: blue;
text-decoration: none;
}
a:visited { color: blue; }
a.clickable {
cursor: pointer;
}
/* Code samples. */
tt {
font-weight: bold;
font-size: 110%;
padding-left: 0.5em;
padding-right: 0.5em;
}
pre {
width: 50%;
padding: 1em;
display: table;
border: 2px solid #999;
}
tt, pre {
color: #347;
background: #cde;
}
/*
* BANNER
*/
div.banner {
width: 100%;
height: 79px;
background-repeat: no-repeat;
border-bottom: 3px solid #ccc;
}
.banner .rotation {
display: inline;
position: absolute;
top: 0px;
}
/*
* HEADINGS
*/
h1.title, h2.subtitle {
margin-top: 0;
padding-top: 0;
text-align: center;
}
h1 {
font-size: 200%;
padding-bottom: 0;
margin-bottom: 0;
}
h2 {
font-size: 130%;
font-style: italic;
}
h1, h2, h3, h4 { color: #347 }
/*
* POD DOCUMENTATION
*/
.pod h1, .pod h2, .pod .index a {
/* text-transform: lowercase; */
/* text-transform: capitalize; */
}
.pod h1 {
font-size: 120%;
font-style: italic;
}
.pod h2 {
font-size: 100%;
}
.pod p {
padding-top: 0;
margin-top: 10px;
}
/*
* ICONS TABLE
*/
.icons td {
padding-left: 2em;
padding-right: 2em;
text-align: center;
vertical-align: middle;
}
/*
* NOTES AND WARNINGS
*/
.note {
background: #ff7;
border: 1px solid blue;
padding: 1em;
margin-left: 10em;
margin-right: 10em;
}
/*
* SIDEBAR
*/
.sidebar {
float: left;
width: 160px;
margin: 10px;
padding: 10px;
}
/* Sidebar heading with rounded corners. */
.sidebar h3 {
margin: 0;
padding: 0;
color: white;
font-size: 90%;
text-align: center;
font-weight: normal;
background: #347;
border-radius: 15px 15px 0 0;
}
/* Sidebar body with rounded corners. */
.sidebar ul {
font-size: 80%;
margin-top: 0px;
margin-left: 0px;
padding-top: 10px;
padding-left: 0px;
padding-bottom: 5px;
list-style-type: none;
background: #cde;
border-radius: 0 0 15px 15px;
overflow: hidden;
}
.sidebar li {
margin-left: 0px;
padding-left: 30px;
}
.sidebar a {
width: 100%;
display: block;
}
/* sidebar hover behavior */
.sidebar ul li:hover, div.sidebar ul li.selected {
color: white !important;
background: #555;
}
.sidebar ul li:hover a, div.sidebar ul li.selected a {
color: white !important;
}
/*
* MAIN CONTENT
*/
.main {
margin-left: 25px;
margin-right: 25px;
text-align: justify;
}
.main .tabs ul, .main .tabs ol { display: block }
.main .tabs a.link { color: blue }
.main .tabs { font-size: 100% }
.slideshow img.border { border: 2px solid #555 }
.slideshow-container {
float: left;
margin-top: 0px;
margin-right: 20px;
margin-bottom: 20px;
}
.slideshow-container center {
color: blue;
cursor: pointer;
}
/*
* NEWS BOX
*/
.news {
float: right;
width:18em;
padding: 0 .5em 0 .5em;
border: solid;
margin: 0px 0px 0.5em 1em;
}
.news dl {
text-align: left;
}
.news dt {
float:left;
width:7em;
}
.news dd {
margin-left:2em;
padding-bottom:0.75em;
}
.news dt,dd {
/* padding-bottom: 0.75em;*/
}
/*
* For a table in develop.html
*/
table.devel {
border: 5px solid black;
margin: 20px;
text-align: left;
border-collapse: collapse;
border-style: solid;
}
.devel th {
padding: 10px;
border-top: 2px solid #888;
border-bottom: 2px solid #888;
border-right: 1px solid #aaa;
border-left: 1px solid #aaa;
}
.devel td {
padding: 10px;
border-right: 1px solid #aaa;
border-left: 1px solid #aaa;
border-bottom: 1px solid #444;
}
/* install.html styles */
#general-note, .howto {
margin-top: 15px;
margin-left: 210px;
margin-right: 20px;
margin-bottom: 30px;
border: 4px solid #ccc;
padding: 1em;
}
#general-note h3, #general-note p {
margin: 0;
padding: 0;
}