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
|
..
File to ..include in a document with a very big table of content, to
give it 'style'
.. raw:: html
<style type="text/css">
div.bodywrapper blockquote {
margin: 0 ;
}
div.toctree-wrapper ul {
margin: 0 ;
padding-left: 0px ;
}
li.toctree-l1 {
padding: 0 ;
list-style-type: none;
font-size: 150% ;
font-family: Arial, sans-serif;
background-color: #BED4EB;
font-weight: normal;
color: #212224;
margin-left : 0;
font-weight: bold;
}
li.toctree-l1 a {
padding: 0 0 0 10px ;
}
li.toctree-l2 {
padding: 0.25em 0 0.25em 0 ;
list-style-type: none;
background-color: #FFFFFF;
font-size: 90% ;
font-weight: bold;
}
li.toctree-l2 ul {
padding-left: 40px ;
}
li.toctree-l3 {
font-size: 70% ;
list-style-type: none;
font-weight: normal;
}
li.toctree-l4 {
font-size: 85% ;
list-style-type: none;
font-weight: normal;
}
</style>
|