Actions

MediaWiki

Difference between revisions of "Pivot.css"

From Unofficial Stationeers Wiki

Line 36: Line 36:
 
     border-left: 1px solid #ccc;
 
     border-left: 1px solid #ccc;
 
     border-right: 1px solid #ccc;
 
     border-right: 1px solid #ccc;
 +
}
 +
 +
ul.off-canvas-list li label {
 +
  background: #014c8c;
 +
  border: none;
 +
  color: #eee;
 +
}
 +
 +
ul.off-canvas-list li a {
 +
    color: #fc640b;
 +
}
 +
 +
ul.off-canvas-list li a:hover {
 +
    background: #69a3d4;
 
}
 
}

Revision as of 10:45, 16 December 2017

/* Custom colors - top bar*/
.tab-bar {
    background: #000;
}

/* style the labels */
.side-nav li a:not(.button) {
    color: #ddd;
    transition: color 0.15s ease-in;

}

.side-nav li a:not(.button):hover, .side-nav li a:not(.button):focus {
    background: transparent;
    color: #fc640b;
}

ul.side-nav label {
    /* orange */
    background: #fc640b;
    color: #fff;
    padding: .25em .5em;
}

/* sidebar background color */
body {
    /* blue */
    background-color: #014c8c;
}

/* controls the main body area styling */
#p-cactions {
    padding-top: 1.5em;
    padding-bottom: .5em;
    background-color: #f6f6f6;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
}

ul.off-canvas-list li label {
  background: #014c8c;
  border: none;
  color: #eee;
}

ul.off-canvas-list li a {
    color: #fc640b;
}

ul.off-canvas-list li a:hover {
    background: #69a3d4;
}