/* Copyright (c) 2009 Exemplics LLC
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
Version 2009.2
*/
/*
Use a monospace font for numeric values so their width reflects
their magnitude.
*/
td.Bytes, td.BytesFree, td.ElapsedMinutes, td.ResultCode {
text-align: right;
font-family: "Courier New", Courier, monospace;
}
/*
Make sure body... comes after td.Bytes... Otherwise the column
headings for the above columns will use the monospace font.
*/
body, pre, table, .ColumnHeadings td {
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
line-height: 110%;
}
/* Set margins for more consistent appearance across browsers. */
p {
font-size: 10px;
margin-top: 0px;
margin-bottom: 0px;
}
/* Get rid of extra whitespace in tables. */
table {
border-collapse: collapse;
}
/* Set margin-bottom for more consistent appearance across browsers. */
h1 {
font-size: 14px;
margin-bottom: 0px;
}
/* Right align numeric columns. */
.Bytes, .BytesFree, .ElapsedMinutes, .ResultCode {
text-align: right;
}
/* Left align text columns. */
.ConsoleText, .Kind, .Name, .Pathname, .SectionHeading {
text-align: left;
}
/* Pad left aligned columns. */
.ConsoleText, .Kind, .Name, .Pathname {
padding-left: .5em;
}
/* Style for output of Steps that had errors. */
.ConsoleText pre {
color: gray;
font-size: 10px;
font-style: italic;
margin-top: 0px;
margin-bottom: 0px;
}
/* Rows with missing data or non-zero ResultCode. */
.Error {
color: red;
}
/* Use thin gray lines for rules. */
.ColumnHeadings td, .Total {
border-width: 1px;
border-color: #DDD;
}
/* Draw a rule under column headings. */
.ColumnHeadings td {
border-bottom-style: solid;
}
/* Draw a rule above total elapsed time.
Add some extra padding on the bottom to separate tables.
*/
.Total {
border-top-style: solid;
padding-bottom: .5em;
}
/* Distinguish section headings. */
.SectionHeading {
font-weight: bold;
padding-top: 1em;
}view plain text source
Bookmark/Search this post with: