File: ug.css

package info (click to toggle)
xhtmlrenderer 0.0~R8%2Bdfsg2-1.1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 11,292 kB
  • sloc: java: 46,036; xml: 1,518; makefile: 27; sh: 11
file content (82 lines) | stat: -rw-r--r-- 1,050 bytes parent folder | download | duplicates (3)
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
#toc {
    page-break-before: always;
    font-size: 18pt;
    text-align: center;
}

#footer {
    display: block;
    position: running(footer);
}

h2 {
    margin-top: 18pt;
    page-break-before: always;
}

h3, h4 {
    margin-top: 18pt;
    page-break-after: avoid;
}

.printOnly {
    display: block;
}

body {
    padding: 0;
}

a:link {
    text-decoration: none;
    color: black;
}

div #menu {
    display: none;
}

#pagenumber:before {
    content: counter(page);
}

#pagecount:before {
    content: counter(pages);
}

.extensions td {
    border: 1px solid black;
    border-collapse: collapse;
}

.extensions td {
    margin: 0;
    padding: 3px 3px 10px;
    vertical-align: top;
}

@page {
    size: A4;
    margin: 0.5in .5in 1in .5in;

    @bottom-left {
        content : element(footer);
    }

    @bottom-right {
        content: "Page " counter(page) " of " counter(pages);
    }
}

@page :first {
    border: thin solid black;

    @bottom-left {
        content : "";
    }

    @bottom-right {
        content: "";
    }
}