Page tree
Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Next »



Standard rules
  1. CSS attributes, defined like this: icon#attribute1:value1;attribute2:value2

The attributes are specified as a Semicolon-separated-list, just as in HTML

  • fa fa-user#color:red
  • fa fa-user#color:red;font-size:14px;

 

  1. CSS classes, defined like this: icon#_style:cssClassName1 cssClassName2

The classes are specified as a Space-separated-list, just as in HTML

  • fa fa-user#_style:module_prod
  • fa fa-user#_style:module_offer
  • fa fa-user#_style:module_prod module_offer

This would imply that the CSS classes specified will need to exist in SASS files.

  1. Stacked font-icons, defined like this: icon1$icon2. Both icons also support CSS attributes or CSS classes
  • fas fa-circle$fas fa-flag
  • fas fa-circle#color:red$fas fa-flag#_style:module_offer
  • No labels