MediaWiki:Common.css

From dataZoa Wiki
Revision as of 09:19, 10 November 2016 by SNC (Talk | contribs)

Jump to: navigation, search

Note: After saving, 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)
  • Internet Explorer: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Clear the cache in Tools → Preferences
/* CSS placed here will be applied to all skins */
 
/* change the size of the dZ logo in the Vector Skin */
#p-logo a {
background-size: 150px 50px;
}
 
/* changes the size of the dZ logo for the Boostrapskin */
#p-logo {
width: 70%;
}
 
#mw-head {
background-color: #50CC22;
}
 
#mw-page-base {
background-image: linear-gradient(#00af89 50%,#50CC22 100%);
}
 
#mw-head-base {
background-color: #50CC22;
}
 
body {
background-color: #50CC22;
}
 
#innerbodycontent {
border-radius: 12px;
}
 
.btn {
border-radius: 6px;
}
 
#offCanvas {
border-radius: 12px;
}
 
/* remove tools from sidebar */
#p-tb { display:none !important; }
 
//remove footer from bootstrap template
#footer-places-disclaimer {display:none!important;}
#footer-places-about  {display:none!important;}
#footer-places-privacy  {display:none!important;}
#footer-icons {display:none!important;}
 
/* = TOOLTIP STUFF */
 
/* Tooltip container */
.tooltip {
    position: relative;
    display: inline-block;
    }
 
/* Tooltip text */
.tooltip .tooltiptext {
    visibility: hidden;
    width: 200px;
    background-color: white;
    color: black;
    text-align: left;
    padding: 5px 0;
    border-radius: 6px;
 
    /* Position the tooltip text - see examples below! */
    position: absolute;
    z-index: 1;
}
 
 
/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}
 
.300px img { 
width: 300px;
 
}
 
.externalimage-holder {
    position: relative;
}
.externalimage-holder img {
    width: 100%;
    height: auto;
}
 
.someimage {
background: url("https://www.datazoa.com/img/vert_data_table.png");
background-image: url("https://www.datazoa.com/img/vert_data_table.png");
}
 
.imgSnippetWrap1 { background-color: #f9f9f9; border: 1px solid #dddddd; padding: 1.5em; margin: 1em; margin-left: 2em; }