-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_base.css
executable file
·62 lines (55 loc) · 1004 Bytes
/
_base.css
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
html {
font-family: Verdana, Geneva, Tahoma, sans-serif;
}
/*
#source {
position: absolute;
right: 0;
top: 0;
}
*/
#navigation a {
margin-right: 1em;
}
pre, p {
margin: 0em;
padding: 0em;
}
table {
border-spacing: 0;
border-collapse: collapse;
border:solid #000 !important;
border-width:1px 0 0 1px !important;
empty-cells: show;
/* todo - draw empty cells? */
}
table td, th {
/* border: 1px solid black; */
border:solid #000 !important;
border-width:0 1px 1px 0 !important;
vertical-align: top;
}
table li, table ul {
/* display: inline; */
list-style: none;
margin: 0;
padding: 0;
}
.page_break {
page-break-before: always;
}
@media print {
@page {
margin: 1em;
}
#navigation { /* , #source */ /* and (min-width: 500px) */
display: none;
}
table {
page-break-inside:auto;
}
tr {
page-break-inside:avoid;
page-break-after:auto;
}
}