-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIRS1040Style.xsl
60 lines (52 loc) · 1.5 KB
/
IRS1040Style.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
<?xml version="1.0" encoding="UTF-8" ?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template name="IRS1040Style">
<!-- CSS Styles Go Here -->
/* BEGIN PAGE SPECIFIC STYLES */
.verticaltext {
writing-mode: tb-rl;
filter: flipv fliph;
float: left;
clear: none;
}
.verticaltextflip {
writing-mode: tb-rl;
filter: flipv flipv;
float: left;
clear: none;
}
.styDotBox {
float: left;
clear: none;
color: black;
border-color: black; border-style: dotted;
border-top-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-right-width: 1px;
}
.styDblBox {
border-style: solid;
border-color: black;
border-top-width: 2px;
border-bottom-width: 2px;
border-left-width: 2px;
border-right-width: 2px;
float: left;
clear: none;
}
.sty1040DepdContainer {
border-style: solid; border-color: black;
border-top-width: 1px; border-bottom-width: 0px; border-left-width: 0px; border-right-width: 0px;
width: 123mm; height:28mm;
float:left;clear:none;
overflow-y: auto;
}
.styIRS1040HeaderCell { /* Filer Info cell */
height:7.5mm;
padding-left:4px;
border-style:solid;
border-color:black;
border-width:0px 1px 1px 0px;
float:left; clear:none;
}
/* END PAGE SPECIFIC STYLES */
</xsl:template>
</xsl:stylesheet>