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
|
@import url("agogo.css");
div.header .headertitle {
margin-bottom: 0px;
font-family: "Palatino Linotype", serif;
}
div.header .headertitle a {
color: #2F2F2F;
}
div.document {
width: 85em;
}
/* MMX's edit */
div.header, div.content, div.footer {
width: unset; /* unset to override agogo.css settings */
}
div.content {
display: flex;
}
/* END of MMX's edit */
div.sidebar .caption {
font-weight: bold;
color: #3465a4;
}
div.body .toctree-wrapper {
display: none;
font-size: 1px;
}
div.sidebar li.toctree-l1 a {
background-color: initial;
}
div.footer, div.footer a {
color: #034f84;
}
table {
border-collapse: collapse;
margin-bottom: 10px;
margin-top: 10px;
}
th, td {
padding-right: 4px;
padding-left: 4px;
border: 2px solid #87bdd8;
}
div.document li.toctree-l1 {
margin-bottom: .5em;
}
div.document li.toctree-l1 a {
color:black;
}
div.document ul {
margin: 1.5em;
list-style-type: circle;
}
div.cap
|