40 lines
632 B
CSS
40 lines
632 B
CSS
/*Basic style used throughout*/
|
|
body
|
|
{
|
|
font-weight: normal;
|
|
font-size:smaller;
|
|
}
|
|
|
|
/*Section headings, i.e. largest boldest text on page*/
|
|
.secthead
|
|
{
|
|
font-weight: bold;
|
|
font-size: larger;
|
|
}
|
|
|
|
/*Sub headings, unread email messages, no larger, only bold*/
|
|
.sectsubhead
|
|
{
|
|
font-weight: bold;
|
|
}
|
|
|
|
/*Smallest text for various areas*/
|
|
.tinytext
|
|
{
|
|
font-weight:normal;
|
|
font-size:x-small;
|
|
}
|
|
|
|
/*MBI application error messages, i.e. unable to connect to database, errors etc*/
|
|
.clerror
|
|
{
|
|
font-weight: bold;
|
|
color: red;
|
|
}
|
|
|
|
/*MBI warning messages*/
|
|
.clwarning
|
|
{
|
|
color: red;
|
|
font-size:x-small;
|
|
} |