﻿/*  *********************************************************  *
 *  This style sheet is for all documents in the MSVC subweb.  *
 *  *********************************************************  */

/*  ****************  */
/*  Character Styles  */

/*  By character style is here meant a class that is only ever meant to 
    apply to inline text and is therefore made specific here to SPAN 
    elements. The same class may be reused for other elements. 

    Unfortunately, Expression Web does not like this specificity and will 
    recognise class selectors for SPAN elements only once a SPAN element is 
    formally created, even though Expression Web will create a SPAN element 
    implicitly when formatting inline text. A workaround is to give all 
    these styles an empty definition as class selectors with no element.  */

.argument, .attribute, .class, .command, .constant, .def, .directive, .env, 
.function, .identifier, .iid, .interface, .keyword, .macro, .member, 
.method, .operator, .placeholder, .section, .specifier, .statement, .struct, 
.switch, .symbol, .type, .undocumented, .value, .variable {
}

/*  For (small) programming and usage elements in text  */

span.argument, span.placeholder {
  font-style:italic
}

span.attribute, 
span.class, 
span.command, 
span.constant, 
span.def, 
span.directive, 
span.env, 
span.function, 
span.identifier, 
span.iid, 
span.interface, 
span.keyword, 
span.macro, 
span.member, 
span.method, 
span.operator, 
span.section, 
span.specifier, 
span.statement, 
span.struct, 
span.switch, 
span.symbol, 
span.type, 
span.value, 
span.variable {
  font-weight:bold
}

span.switch, span.symbol {
  white-space:nowrap;
}

/*  For colour-coded documentation status  */

span.undocumented {background-color:#FFFF00}

/*  For tables of error messages  */

table.ErrorMessages {
}

table.ErrorMessages col.Message, 
table.ErrorMessages col.Number {
    text-align:left;
}

/*  Copyright © 2007-2010. Geoff Chappell. All rights reserved.  */
