MediaWiki:Common.css

From vwiki
Revision as of 08:05, 8 May 2012 by Sstrutt (talk | contribs) (Added table row highlight on hover)
Jump to navigation Jump to search

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)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Press Ctrl-F5.
/* CSS placed here will be applied to all skins */

/* Remove logo space */
#p-logo a, #p-logo a:hover {
    display: none;
}
 
#column-one {
padding-top: 21px;
}
 
 
/* Custom table */
table.vwikitable {
        margin: 1em 1em 1em 0;
        background: #fafffa;
        border: 1px #9EB19E solid;
        border-collapse: collapse;
        color: black;
}
.vwikitable th, .vwikitable td {
        border: 1px #9EB19E solid;
        padding: 0.2em;
}
.vwikitable th {
        background: #ddeddd;
        text-align: center;
}
.vwikitable caption {
        font-weight: bold;
}
.vwikitable tr:hover {
        background-color: #f6f6d1;
}

/* Custom alert table */
table.alert {
        margin: 1em 1em 1em 0;
        background: #fff6f6;
        border: 1px #B19E9E solid;
        border-collapse: collapse;
        color: black;
}
.alert th, .alert td {
        border: 1px #B19E9E solid;
        padding: 0.2em;
	text-align: center;
}
.alert th {
        background: #eddddd;
}
.alert caption {
        font-weight: bold;
}