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
|
@import url("agogo.css");
/* Tables */
table.docutils {
border: 0;
border-collapse: collapse;
margin-top: 1em;
margin-bottom: 1em;
}
table.docutils td, table.docutils th {
padding: 1px 8px 1px 5px;
border-top: 0;
border-left: 0;
border-right: 0;
border-bottom: 1px solid #aaa;
}
table.docutils td {
text-align: left;
}
table.docutils th {
background-color; #eeeeec;
}
/* Less vertical margin around lists */
html div.document ul {
margin: 0.5em 1.5em;
}
/* Less vertical spacing in the examples */
div.highlight {
line-height: 1em;
}
/* The title justified is awful */
div.body h1 {
text-align: left;
line-height: 100%;
}
/* definitions in bold */
dl.goals dt {
font-weight: bold;
}
|