Styling

You can alter the appearance of slCMS by putting a file called style.css directly into the webcontents` folder. This file gets loaded after the default stylesheet, so you can override any CSS rule you like.

slCMS is developed using SCSS, the deployed software however does ship with the regular CSS files.

Examples

To implement a simple „dark theme“ one could add the following content into a file named style.css in the webcontents folder:

body, nav.main > ul > li > ul, nav.main > ul > li:hover  {
        background: #333;
}
body, header a, h1 {
        color: #eee;
}