MediaWiki:Common.css

From PantherPride Wiki
Revision as of 09:33, 22 January 2024 by Stidball (talk | contribs)

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 */

.mw-header {
background: #353333 url("https://pantherpride.com.au/uploads/default/original/1X/8a5161e61ba010e945f7045371d35d586c703554.png") repeat-x left bottom !important;
height: 80px;
color: #fff;
}

body{
background: url('https://pantherpride.com.au/uploads/default/original/1X/8a5161e61ba010e945f7045371d35d586c703554.png') repeat-x left 90px / auto, linear-gradient(to bottom, #353333 0%, #353333 90px, white 90px, white 100%);
}

.vector-feature-zebra-design-disabled .mw-header {
display: grid;
column-gap: 36px;
grid-template: auto / 25em minmax(0,1fr);
grid-template-areas: 'headerStart headerEnd';
}


.vector-header-container {
background-color: transparent !important;
}

.mw-logo-wordmark {
font-size: 30px;
color: #eee;
}

.mw-logo-wordmark a:link, .mw-logo-wordmark a:visited, .mw-logo-wordmark a:hover, .mw-logo-wordmark a:active {
 color: #eee;
 text-decoration: none;
 font-weight: bold;
}

#vector-user-links-dropdown-checkbox {
color: #353333;
}

#pt-login-2 {
display: none;
}

.mwe-popups-settings-icon { 
display: none; }


/* Table vertical line styling */

.cell-with-line {
  position: relative;
  text-align: center; /* or other alignment as needed */
}

.cell-with-line::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  bottom: 0;
  width: 1px; /* or the thickness you want */
  background-color: #000; /* or any color you want */
}