Sample CSS Document

The default cascade style sheet is called SRRSchedule.CSS. It is automatically overwritten every time a schedule is displayed from the current report settings. The sample provide here is based on the settings that I was using at the time. So your default file will have different values.

Notes IconYou should never try to change the contents of this file yourself as your changes will be overwritten.

I have provided this sample so that you can see what all the class names are.

body {
    font-family: 'Arial Narrow';
    font-size: 8pt;
    text-align: left;
    color: #000000;
    background-color: #ffffff;
}
.textReportTitle {
    font-family: 'MS Sans Serif';
    font-size: 12pt;
    font-weight: 700;
    text-align: center;
    color: #000000;
    background-color: #ffffff;
}
.cellHeading {
    font-family: 'MS Sans Serif';
    font-size: 12pt;
    font-weight: 700;
    text-align: left;
    color: #000000;
    background-color: #804040;
}
.cellSpecialEvent {
    font-family: 'MS Sans Serif';
    font-size: 12pt;
    font-style: italic;
    text-align: center;
    color: #000000;
    background-color: #ffffff;
}
.cellNote {
    font-family: 'MS Sans Serif';
    font-size: 12pt;
    font-weight: 700;
    text-align: center;
    color: #000000;
    background-color: #ffffff;
}
table {
    border: 1px solid #000000;
    border-spacing: 0mm;
    border-collapse: collapse;
    width: 100%;
}
table td {
    border: 1px solid #000000;
    padding: 1mm;
}
.cellGap {
    max-height: none;
    padding: 0;
    height: 5mm;
    background-color: #808040;
}
.cellDate {
    text-transform: uppercase;
    background-color: #ffff80;
}
.cellHighlight {
    background-color: #00ffff;
}
/* Use this class if you do want to display any conflicts of assignment */
.cellConflict {
    /* background-color: #ff0000; */
}
.rowOdd {
    background-color: #ff8000;
}
.rowEven {
    background-color: #ff0000;
}
.cellEmpty {
    background-color: #ffffff;
}