MediaWiki:Vector.css: Difference between revisions

From Wildfrost Wiki
Jump to navigation Jump to search
No edit summary
m (Table Styling)
Line 120: Line 120:
.vector-menu-tabs, .vector-menu-tabs a, #mw-head .vector-menu-dropdown .vector-menu-heading {
.vector-menu-tabs, .vector-menu-tabs a, #mw-head .vector-menu-dropdown .vector-menu-heading {
     background: none;
     background: none;
}
/* Table Styling */
table.wikitable {
  background-color: transparent;
  border-collapse: separate;
  border: none;
}
table.wikitable > tr > th, table.wikitable > tr > td, table.wikitable > * > tr > th, table.wikitable > * > tr > td {
  border: 1px solid #29758e;
  padding: 0.2em;
  background-color: rgba(255, 255, 255, 0.58);
}
table.wikitable > tr > th, table.wikitable > * > tr > th {
  background-color: #29758e;
  text-align: center;
  border-color: #184554;
  box-shadow: 0px 1px rgba(0,0,0,0.3);
  color: white;
  text-shadow: 0px 2px #184554;
}
table.wikitable > tr > th a, table.wikitable > * > tr > th a {
  color:white;
}
}

Revision as of 15:26, 22 November 2022

/* All CSS here will be loaded for users of the Vector skin */


/* Body */
body {
    background: url("/resources/wildfrost/background.jpg") no-repeat fixed top center / cover;
    font-family: Sans-serif;
}

.vector-body {
  font-size: 16px;
}

.mw-body {
  border: 1px solid #5ba5cc;
  margin-right: 15px;
  background-color: rgb(191 240 249 / 95%);
  min-height:500px;
  margin-bottom: 60px;
}

div#footer {
  background: rgba(0, 0, 0, 0.8) none repeat scroll 0% 0%;
  width: 100%;
  padding: 0px !important;
  margin-top: 20px !important;
  bottom: 0px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  color: #C2C8CF;
}

.mw-body h1, .mw-body h2 {
   font-family: Sans-serif;
   font-weight: 500;
}

div#footer #footer-icons {
    margin-top: -18px;
}

div#mw-panel {
   border: 6px solid transparent;
   left: -12px;
   background-color: rgb(191 240 249 / 95%);
   padding-bottom: 15px;
   border-top-right-radius: 8px;
   border-bottom-right-radius: 8px;
   margin-top: 170px;
}

#p-logo {
   position: absolute;
   top: -170px;
}

#p-logo a {
   display:block;
}

div#footer ul {
  padding-left: 190px;
  padding-right: 15px;
}

.mw-footer li {
  color:#9fa5ff;
}

.mw-footer a {
  color:#c0c3f7;
}

.catlinks {
    border: 1px solid #8f93dd;
    background-color: #ffffff82;
    padding-left: 8px;
}

#toc, .toc {
  background-color: rgba(255,255,255,0.58);
}

div.thumbinner {
   border: 1px solid #8DCAF0;
   background-color: rgba(255,255,255,0.58);
}


/* Mediawiki page tabs */
#mw-page-base {
  background:none;
}

div.vector-menu-tabs div.menu {
  background-color: rgba(30, 17, 102, 0.67);
}

div.vector-menu-tabs div.menu a {
  color: #C6DBFF;
}

#p-personal a, #p-personal a.new, p-personal a:visited, #p-personal a.new:visited {
   color: #99BFFF;
}

#p-personal a.hover, p-personal a:focus {
   color: #C6DBFF;
   text-decoration:none;
}

div#mw-head div.vector-menu-tabs h3, div.vector-menu-tabs ul, div.vector-menu-tabs li.selected, div.vector-menu-tabs ul li, div.vector-menu-tabs, div.vector-menu-tabs span {
    background: none;
}

.vector-menu-tabs li, .vector-menu-tabs .selected, .vector-menu-tabs li {
    background: none;
}

.vector-menu-tabs, .vector-menu-tabs a, #mw-head .vector-menu-dropdown .vector-menu-heading {
    background: none;
}

/* Table Styling */
table.wikitable {
  background-color: transparent;
  border-collapse: separate;
  border: none;
}

table.wikitable > tr > th, table.wikitable > tr > td, table.wikitable > * > tr > th, table.wikitable > * > tr > td {
   border: 1px solid #29758e;
   padding: 0.2em;
   background-color: rgba(255, 255, 255, 0.58);
}

table.wikitable > tr > th, table.wikitable > * > tr > th {
   background-color: #29758e;
   text-align: center;
   border-color: #184554;
   box-shadow: 0px 1px rgba(0,0,0,0.3);
   color: white;
   text-shadow: 0px 2px #184554;
}

table.wikitable > tr > th a, table.wikitable > * > tr > th a {
   color:white;
}