blob: 6b7c7e6740160510f3c386267e22ba0ac3dcd251 (
plain)
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
|
/* file : toc.css
* copyright : Copyright (c) 2014-2016 Code Synthesis Ltd
* license : MIT; see accompanying LICENSE file
*/
table.toc
{
border-style : none;
border-collapse : separate;
border-spacing : 0;
margin : 0.2em 0 0.2em 0;
padding : 0 0 0 0;
}
table.toc tr
{
padding : 0 0 0 0;
margin : 0 0 0 0;
}
table.toc * td, table.toc * th {
border-style : none;
margin : 0 0 0 0;
vertical-align : top;
}
table.toc * th
{
font-weight : normal;
padding : 0 0.8em 0 0;
text-align : left;
white-space : nowrap;
}
table.toc * table.toc th
{
padding-left : 1.7em;
}
table.toc * td
{
padding : 0 0 0 0;
text-align : left;
}
|