-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIRS1040ScheduleRStyle.xsl
60 lines (58 loc) · 1.53 KB
/
IRS1040ScheduleRStyle.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
<?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 1040ScheduleF -->
<xsl:template name="IRS1040ScheduleRStyle">
.styForm1040SchREINFullBox{ /*Employer ID complete box*/
border-style: solid; border-color: black;
font-size:6pt;
font-weight: bold;
float:left;
}
.styForm1040SchRLNRightNumBox{ /* Double digit item number to the left of the page */
width:8mm;height:4mm;
padding-top:.5mm;
padding-bottom:.5mm;
font-weight:bold;
float:left; clear:none;
padding-left:1mm;
}
.styForm1040SchRCkBox{ /* Check box */
width:8mm;height:4mm;
padding-top:.5mm;
padding-bottom:.5mm;
font-weight:bold;
float:left; clear: none;
}
.styForm1040SchRColBox{ /* Column box */
width:32mm;
height:13mm;
font-size:7.5pt;
padding-top:4mm;
padding-bottom:0mm;
text-align:right;
font-weight:bold;
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;
}
.styForm1040SchRColBoxGrey{ /* Column box */
width:32mm;
height:13mm;
font-size:7.5pt;
padding-top:4mm;
padding-bottom:0mm;
text-align:right;
font-weight:bold;
border-style: solid; border-color: black;
border-top-width: 0px;
border-bottom-width: 1px;
border-left-width: 1px;
border-right-width: 1px;
background-color:lightgrey;
float:left; clear: none;
}
</xsl:template>
</xsl:stylesheet>