-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIRS1118ScheduleJStyle.xsl
68 lines (66 loc) · 2.72 KB
/
IRS1118ScheduleJStyle.xsl
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
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:fo="http://www.w3.org/1999/XSL/Format">
<xsl:template name="IRS1118ScheduleJStyle">
.IRS1118ScheduleJ_FormNumBlock { /* Form number block in header */
padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px;
border-style: solid; border-color: black;
border-top-width: 0px; border-bottom-width: 1px; border-left-width: 0px; border-right-width: 1px;
width:30mm;height:25.25mm;
float:left;
}
.IRS1118ScheduleJ_FormYearBlock { /* Block with bottom border only */
padding-top: 10mm; padding-bottom: 0px; padding-left: 1mm; padding-right: 0px;
border-style: solid; border-color: black;
border-top-width: 0px; border-bottom-width: 1px; border-left-width: 0px; border-right-width: 0px;
width:30mm;height:25.25mm;
float:left;
}
.IRS1118ScheduleJ_EINBox { /* Block with bottom border only */
padding-top: 0px; padding-bottom: 0px; padding-left: 5px; padding-right: 0px;
border-style: solid; border-color: black;
border-top-width: 0px; border-bottom-width: 1px; border-left-width: 0px; border-right-width: 0px;
width:50mm;height:8mm;
float:left;
}
.IRS1118ScheduleJ_PartIndex {
padding-top: 0px; padding-bottom: 0px; padding-left: 4px; padding-right: 0px;
border-style: solid; border-color: black;
border-top-width: 1px; border-bottom-width: 0px; border-left-width: 0px; border-right-width: 0px;
float:left;
width:16mm;
font-size:8pt;font-weight:bold;background-color:black;color:white;
}
.IRS1118ScheduleJ_TableContainer {
clear:both;
width:187mm;
}
.IRS1118ScheduleJ_GenericCell { /* Form Name */
border-style: solid; border-color: black;
border-top-width: 0px; border-bottom-width: 1px; border-left-width: 0px; border-right-width: 1px;
padding-left:0.5mm;padding-right:0.5mm;
width:42mm;height:4mm;font-size:7pt;font-family:arial;
text-align:right;
}
.IRS1118ScheduleJ_IndexCell { /* index */
border-style: solid; border-color: black;
border-top-width: 0px; border-bottom-width: 1px; border-left-width: 0px; border-right-width: 0px;
padding-left:2mm;
width:6mm;height:4mm;
font-weight:bold;
}
.IRS1118ScheduleJ_SubIndexCell { /* index */
border-style: solid; border-color: black;
border-top-width: 0px; border-bottom-width: 1px; border-left-width: 0px; border-right-width: 0px;
padding-left:4mm;
width:6mm;height:4mm;
font-weight:bold;
}
.IRS1118ScheduleJ_DescCell { /* Form Name */
border-style: solid; border-color: black;
border-top-width: 0px; border-bottom-width: 1px; border-left-width: 0px; border-right-width: 1px;
padding-left:1mm;padding-right:1mm;
width:100mm;height:4mm;
text-align:left;font-size:7pt;
}
</xsl:template>
</xsl:stylesheet>