-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIRS1120SScheduleM3Style.xsl
50 lines (44 loc) · 1.43 KB
/
IRS1120SScheduleM3Style.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
<?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 1120SScheduleN -->
<xsl:template name="IRS1120SScheduleM3Style">
.styIRS1120SScheduleM3TheadCell{ /*Header Cell */
font-size:6pt;
width:25mm;
font-weight:normal;
text-align:center;
display:table-header-group;
border-style: solid;
border-color: black;
border-top-width: 0px; border-bottom-width: 1px; border-left-width: 1px; border-right-width: 0px;
}
.styIRS1120SScheduleM3Cell { /*Cell for amounts */
font-size:7pt;
font-family:arial;
padding-right:.5mm;
width:25mm;
font-weight:normal;
text-align:right;
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;
}
.styIRS1120SScheduleM3ShadedCell { /*Cell for amounts with grey background */
width:25mm;
background-color:lightgrey;
border-style: solid;
border-color: black;
border-top-width: 0px; border-bottom-width: 1px; border-left-width: 1px; border-right-width: 0px;
}
.styIRS1120SScheduleM3NumberCell { /*Cell for amounts with grey background */
width:6mm;
padding-top:.5mm;
padding-bottom:.5mm;
font-weight:bold;
float:left; clear:none;
padding-left:1mm;
vertical-align:top;
}
</xsl:template>
</xsl:stylesheet>