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
|
@import url("agogo.css");
/* Agogo lists are all scrunched up */
ul.simple {
margin: 10px;
}
/* No more plain HTML tables */
table.docutils {
border-collapse: collapse;
border: 1px #555;
}
table.docutils td {
padding: 4px;
}
/* Italic links are distracting to read */
a.reference em {
font-style: normal;
}
dl.function dt {
background-color: #f0f0f0;
}
dl.method dt {
background-color: #f0f0f0;
}
dl.attribute dt {
background-color: #f0f0f0;
}
dl.docutils dt {
background-color: #fff;
text-decoration: underline;
}
|