home *** CD-ROM | disk | FTP | other *** search
- /*
- *********************************************************************************
- **
- ** File Name: style.css
- **
- ** Summary: SupportSoft Common Stylesheet File
- **
- ** Description: This file contains global style classes and styles associated with
- ** specific HTML tags.
- **
- ** Copyright SupportSoft Inc. 2003, All rights reserved.
- **
- **********************************************************************************
- */
-
- /***********************************************************************************
- HTML Tag Styles
- ***********************************************************************************/
-
- /* Defines the default font and margins of each HTML file */
- BODY {
- font-family: Arial, Helvetica, san-serif;
- font-size: 16px;
- font-weight: normal;
- margin-bottom: 0px;
- margin-left: 0px;
- margin-right: 0px;
- margin-top: 0px;
- background-image: url(../images/sacrs_bkg_nonav_wide.gif);
- overflow:hidden; /* Show scrollbars if necessary */
- }
-
- /* Defines the default font and margins of each <TD> tag within a <TABLE> */
- TD {
- font-family: Arial, Helvetica, san-serif;
- font-size: 16px;
- font-weight: normal;
- }
-
- /* Defines the default font and margins of each <P> (paragraph) tag */
- P {
- font-family: Arial, Helvetica, san-serif;
- font-size: 11pt;
- font-weight: normal;
- }
-
- /* All links will be blue, even visited, unless specifically defined on page */
- A {
- color: blue;
- }
-
- /***********************************************************************************
- Classes
- ***********************************************************************************/
-
- /***********************************************************************************
- Class: header
- Use: Used for header text on help window
- ***********************************************************************************/
- .header {
- font-family: Arial, Helvetica, san-serif;
- font-size: 18px;
- font-weight: bold;
- }
-
- /***********************************************************************************
- Class: header
- Use: Used for the Text Header in each of the pages.
- ***********************************************************************************/
- .hedspace
- {
- margin-left:28px;
- margin-right:20px;
- margin-top:15px;
- }
-
- /***********************************************************************************
- Class: pageheader
- Use: Used for header text on install pages
- ***********************************************************************************/
- .pageheader {
- font-family: Arial, Helvetica, san-serif;
- font-size: 20px;
- color: #00006e;
- font-weight: bold;
- }
-
- /***********************************************************************************
- Class: cursor
- Use: Creates hand cursor to indicate item is clickable
- ***********************************************************************************/
- .cursor {
- cursor: hand;
- }
-
- /***********************************************************************************
- Class: med_white
- Use: White text used on top of blue background on welcome.htm splash screen
- Values: White text
- ***********************************************************************************/
- .med_white {
- font-family : Arial, Helvetica, sans-serif;
- font-size : 18px;
- font-weight : bold;
- color : #ffffff;
- }
-
- /***********************************************************************************
- Class: subhead
- Use: Used in function sdcDisplayWireFrame on display.js. Defines style for subheader
- text of the wireframe box
- Values: White text
- ***********************************************************************************/
- .subhead {
- font-family: arial;
- font-size: 12 pt;
- color: #ffffff; /* White */
- font-weight: bold;
- line-height: 20px;
- }
-
- /***********************************************************************************
- Class: steps
- Use: Displays current step at bottom of page. Used on display.js
- Values: Gray text
- ***********************************************************************************/
- .steps {
- font-family: Arial, Helvetica, san-serif;
- font-size: 12pt;
- font-weight: normal;
- color: #cccccc; /* Gray */
- }
-
- /***********************************************************************************
- Class: list
- Use: Begin.htm for overview of steps
- Values: 12-point text, 12pter than default, with appropriate spacing
- ***********************************************************************************/
- .list {
- font-family: Arial, Helvetica, san-serif;
- font-size: 12pt;
- font-weight: normal;
- margin-bottom: 4px;
- margin-top: -1px;
- margin-right: 4px;
- line-height: 10px;
- }
-
- /***********************************************************************************
- Class: 12pttext
- Use: For 12pter text than the default <BODY> text. Used on test.htm
- ***********************************************************************************/
- .12pttext {
- font-size: 9pt;
- line-height: 20px;
- }
-
- /***********************************************************************************
- Class: glossary
- Use: For terms that have a definition in common.js. Rolling over term pops up a definition
- Values: Color is green (006633)
- ***********************************************************************************/
- .glossary {
- color:#006633; /* Green */
- text-decoration: underline;
- }
-
- .glossary A {
- color:#006633; /* Green */
- text-decoration: underline;
- }
-
- .glossary A:visited{
- color:#006633; /* Green */
- text-decoration: underline;
- }
-
- /***********************************************************************************
- Class: error
- Use: For error messages when a test fails
- Values: Background color is beige, text color is red, border is black
- ***********************************************************************************/
- .error {
- color:#990000;
- background-color:#ffffcc;
- border-style:solid;
- border-width:1px;
- border-color:#cccccc;
- padding:4px;
- width:600px;
- }
-
- /***********************************************************************************
- Class: progress
- Use: For steps progress in footer
- ***********************************************************************************/
- .progress {
- height:27px;
- line-height:27px;
- vertical-align:middle;
- margin-left:5px;
- margin-right:5px;
- font-size: 12pt;
- color: ffd06e;
- }
-
- .sans12ptblack{
- font: 11pt #000000 Arial, Helvetica, san-serif;
- }
- b{
- font: 11pt;
- font-weight: bold;
- }