MediaWiki

Difference between revisions of "Pivot.css"

From LRDE

(Created page with "→‎Custom colors - top bar: .tab-bar { background: #517398; }")
 
 
(11 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
/* Custom colors - top bar*/
 
/* Custom colors - top bar*/
 
.tab-bar {
 
.tab-bar {
background: #517398;
+
background: #3e4287;
  +
}
  +
  +
/* style the labels */
  +
ul.side-nav label {
  +
background: #3e4287;
  +
color: #fff;
  +
padding: .25em .5em;
  +
}
  +
  +
li.has-form {
  +
display: none;
  +
}
  +
  +
/* sidebar background color */
  +
body {
  +
background-color: #d5e6f7;
  +
}
  +
  +
h3#tagline {
  +
display: none;
  +
}
  +
  +
/* controls the main body area styling */
  +
#p-cactions {
  +
padding-top: 1.5em;
  +
padding-bottom: .5em;
  +
border-left: 1px solid #ccc;
  +
border-right: 1px solid #ccc;
  +
}
  +
  +
div.mw-highlight {
  +
padding-left: 1em;
  +
padding-bottom: 1em;
 
}
 
}

Latest revision as of 18:01, 23 August 2018

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

/* style the labels */
ul.side-nav label {
    background: #3e4287;
    color: #fff;
    padding: .25em .5em;
}

li.has-form {
    display: none;
}

/* sidebar background color */
body {
    background-color: #d5e6f7;
}

h3#tagline {
    display: none;
}

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

div.mw-highlight {
    padding-left: 1em;
    padding-bottom: 1em;
}