/**
 * Stylesheet holding the colors of "normativa" section.
 *
 * Use this classes to add section-dependant color schemes to your stylesheets.
 *
 * To add this stylesheet to your layout, put this in the <head> section:
 *
 *   <?php if (isset($section)): ?>
 *     <link rel="stylesheet" type="text/css" media="all" href="<?php echo url_for('@section_css?name='.$section->getName() ?>
" />
 *   <?php endif; ?>
 *
 */

/* Background and foreground colors */
.section-color-bg { background-color: ; }
.section-color-fg { color: ; }

/* Border colors */
.section-color-border-all { border-color: ; }
.section-color-border-t { border-top-color: ; }
.section-color-border-r { border-right-color: ; }
.section-color-border-b { border-bottom-color: ; }
.section-color-border-l { border-left-color: ; }

/* On hover colors */
.section-color-bg-hover:hover { background-color: ; }
.section-color-fg-hover:hover { color: ; }
.section-color-border-all-hover:hover { border-color: ; }
.section-color-border-t-hover:hover { border-top-color: ; }
.section-color-border-r-hover:hover { border-right-color: ; }
.section-color-border-b-hover:hover { border-bottom-color: ; }
.section-color-border-l-hover:hover { border-left-color: ; }

