Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5.
/* CSS placed here will apply to all skins */

/*** BASE STYLES AND SETTINGS ***/

/** Color variables that could be changed by various skin themes */

/* LIGHT THEME - default */
:root,
.skin-invert,
.notheme {
    --background-color-base: #303031; 
    --content-background-color: #ebeef2; 
    --color-base: #202122;
}

/* DARK THEME - Structorica Dark Theme */
:root .stw-theme-dark {
    --background-color-base: #161618; 
    --content-background-color: #2b2f39;
    --color-base: #f8f5f4;
}

/* Img */
.img-responsive,
.img-responsive img {
    max-width: 100%;
    height: auto;
}