<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/**
 * Stylesheet holding the colors of "noticias_cd" section.
 *
 * Use this classes to add section-dependant color schemes to your stylesheets.
 *
 * To add this stylesheet to your layout, put this in the &lt;head&gt; section:
 *
 *   &lt;?php if (isset($section)): ?&gt;
 *     &lt;link rel="stylesheet" type="text/css" media="all" href="&lt;?php echo url_for('@section_css?name='.$section-&gt;getName() ?&gt;
" /&gt;
 *   &lt;?php endif; ?&gt;
 *
 */

/* 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: ; }

</pre></body></html>