-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIRS1040ScheduleAStyle.xsl
100 lines (92 loc) · 3.04 KB
/
IRS1040ScheduleAStyle.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<?xml version="1.0" encoding="UTF-8" ?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<!-- CSS Styles for form 1040 ScheduleA -->
<xsl:template name="IRS1040ScheduleAStyle">
.styIRS1040ScheduleADotLn {
letter-spacing:3.2mm;
font-weight:bold;
float:left;
padding-right:.9mm;
}
.styIRS1040ScheduleAleftBox{ /* Box for left side of form */
border-style: solid;
border-color: black;
border-top-width: 0px;
border-bottom-width: 0px;
border-left-width: 1px;
border-right-width: 0px;
float:left;
clear: none;
}
.styIRS1040ScheduleAleftBoxWithBottom{ /* Box for left side of form with a bottome line*/
border-style: solid;
border-color: black;
border-top-width: 0px;
border-bottom-width: 1px;
border-left-width: 1px;
border-right-width: 0px;
float:left;
clear: none;
}
.styIRS1040ScheduleArightBox{ /* Box for right side of form */
border-style: solid;
border-color: black;
border-top-width: 0px;
border-bottom-width: 0px;
border-left-width: 1px;
border-right-width: 1px;
float:right;
clear: none;
}
.styIRS1040ScheduleArightBoxWithBottom{ /* Box for right side of form with bottome line*/
border-style: solid;
border-color: black;
border-top-width: 0px;
border-bottom-width: 1px;
border-left-width: 1px;
border-right-width: 1px;
float:left;
clear: none;
}
.styIRS1040ScheduleAlnAmountBox{ /* Box for storing line item amounts. */
width:29.5mm;height:1mm;
padding-top:.2mm;
padding-bottom:.2mm;
text-align:right;
border-style: solid; border-color: black;
border-top-width: 0px; border-bottom-width: 1px; border-left-width: 1px; border-right-width: 0px;
float:left; clear: none;
}
.styIRS1040ScheduleAlnAmountBoxNBB{ /* Amount Box with no bottom border */
width:29.5mm;height:1mm;
padding-top:.2mm;
padding-bottom:.2mm;
text-align:right;
border-style: solid; border-color: black;
border-top-width: 0px; border-bottom-width: 0px; border-left-width: 1px; border-right-width: 0px;
float:left; clear: none;
}
.styIRS1040ScheduleAlnRightNumBox{ /* Right number box */
width:6mm;height:1mm;
padding-top:.2mm;
padding-bottom:.2mm;
font-weight:bold;
text-align:center;
vertical-align:bottom;
border-style: solid; border-color: black;
border-top-width: 0px; border-bottom-width: 1px; border-left-width: 1px; border-right-width: 0px;
float:left; clear: none;
}
.styIRS1040ScheduleAlnRightNumBoxNBB{ /* Right number box with no bottom border*/
width:6mm;height:1mm;
padding-top:.2mm;
padding-bottom:.2mm;
font-weight:bold;
text-align:center;
vertical-align:bottom;
border-style: solid; border-color: black;
border-top-width: 0px; border-bottom-width: 0px; border-left-width: 1px; border-right-width: 0px;
float:left; clear: none;
}
</xsl:template>
</xsl:stylesheet>