Be sure to read our policy on citing sources before editing!

Difference between revisions of "MediaWiki:Vector.css"

From Jiggywikki, a Banjo-Kazooie wiki
Jump to navigationJump to search
Line 1: Line 1:
/* CSS placed here will affect users of the Vector skin */
/* CSS placed here will affect users of the Vector skin */
/* top-of-page gradient over background */
#mw-page-base {
#mw-page-base {
     background:linear-gradient(to bottom, rgba(255,247,223,1.0) 0%,rgba(255,247,223,0.0) 100%);
     background:linear-gradient(to bottom, rgba(255,247,223,1.0) 0%,rgba(255,247,223,0.0) 100%);
}
}


div.vectorTabs li {
/* inactive tab */
div.vectorTabs span {
     background:linear-gradient(to top, rgba(255,223,127,1.0) 0%,rgba(255,223,127,0.25) 50%,rgba(255,223,127,0.0) 100%);
     background:linear-gradient(to top, rgba(255,223,127,1.0) 0%,rgba(255,223,127,0.25) 50%,rgba(255,223,127,0.0) 100%);
}
}


/* active tab */
div.vectorTabs li.selected {
div.vectorTabs li.selected {
     background:#fff7df;
     background:#fff7df;
}
}

Revision as of 23:49, October 19, 2018

/* CSS placed here will affect users of the Vector skin */

/* top-of-page gradient over background */
#mw-page-base {
    background:linear-gradient(to bottom, rgba(255,247,223,1.0) 0%,rgba(255,247,223,0.0) 100%);
}

/* inactive tab */
div.vectorTabs span {
    background:linear-gradient(to top, rgba(255,223,127,1.0) 0%,rgba(255,223,127,0.25) 50%,rgba(255,223,127,0.0) 100%);
}

/* active tab */
div.vectorTabs li.selected {
    background:#fff7df;
}