There are two ways you can use CSS files in BIRT:
Importing CSS files
Using CSS as a resource
In the following examples, we are going to illustrate both scenarios. The following is
the CSS Style Sheet we are going to use:
.page {
background-color: #FFFFFF;
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 12px;
line-height: 24px;
color: #336699;
}
.table-group-footer-1 {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 12px;
line-height: 24px;
color: #333333;
background-color: #FFFFCC;
}
.title {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 24px;
line-height: 40px;
background-color: #99CC00;
color: #003333;
font-weight: bolder;
}
.table-header {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 20px;
background-color: #669900;
color: #FFFF33;
}
.table-footer {
font-family: Arial, Helvetica, sans-serif;
font-size: 14px;
font-weight: bold;
line-height: 22px;
color: #333333;
background-color: #CCFF99;
}
??? ???
Chapter 8
[ 189 ]
Importing CSS Files
I will import this Style for use in a new BIRT report called Top Employees that will
display the Employees based on associated customer sales. In the following example,
I will show how to import an external CSS file into a BIRT Report Project.
1. Create a new report called Top Employees under the Classic Cars ??“ With
Library project.
Pages:
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163