MediaWiki:Common.css: Difference between revisions

From Deadlock Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 153: Line 153:


.mw-page-title-main {
.mw-page-title-main {
   font-family: "CoolFont";
   font-family: "Forevs Demo Bold";
}
}


.infobox-hero-name {
.infobox-hero-name {
   font-family: "CoolFont";
   font-family: "Forevs Demo Bold";
   text-transform: uppercase;
   text-transform: uppercase;
}
}

Revision as of 06:41, 17 September 2024

/* CSS placed here will be applied to all skins */
.ability-icon {
     filter: invert(100%);
     opacity: 0.7;
}

.navbox-title .navbar {
    float: left;
    text-align: left;
    margin-right: 0.5em;
}

.navbox .navbar {
    display: block;
    font-size: 100%;
}

.navbar {
    display: inline;
    font-size: 88%;
    font-weight: normal;
}

.navbar.mini li abbr[title] {
    font-variant: small-caps;
    border-bottom: none;
    text-decoration: none;
    cursor: inherit;
}

.mw-body-content .navbar ul {
    line-height: inherit;
}

.navbar ul {
    display: inline-block;
    white-space: nowrap;
}

.hlist dl, .hlist ol, .hlist ul {
    margin: 0;
    padding: 0;
}

.mw-body h1, .mw-body-content h1, .mw-body-content h2, .mw-body-content h3, .mw-body-content h4, .mw-body-content h5, .mw-body-content h6 {
    font-family: 'PT Serif', 'Palatino', 'Georgia', serif !important;
}

.mainpage-header .header-intro h1 {
    font-size: 2.5em;
    font-weight: bold;
    border: none;
    margin: 0 0 0.15em;
}

.mainpage-header .header-intro p {
    font-size: 1.1em;
    line-height: 1.7em;
}

.page-Deadlock_Wiki .mw-parser-output {
    max-width: 95em;
    margin: 0 auto;
}

.mainpage-header .header-stats {
    flex: 1;
    display: flex;
/*    justify-content: center; */
    align-items: center;
    margin-top: -1em;
}

.mainpage-header .header-stats ul {
    list-style: none;
}

.tooltip {
    cursor: help;
    border-bottom: 1px dotted;
}

.HeroCard2:hover {
	transform: scale(1.1);
	z-index: 2;
}

.infobox {
    background: #eee;
    border: 1px solid #aaa;
    float: right;
    margin: 0 0 1em 1em;
    padding: 1em;
    width: 250px;
}
.infobox-title {
    font-size: 2em;
    text-align: center;
}
.infobox-image {
    text-align: center;
}
.infobox-table th {
    text-align: right;
    vertical-align: top;
    width: 120px;
}
.infobox-table td {
    vertical-align: top;
}

.navbox {
    display: table !important;
}

table {
  display: table !important;
}
/*CSS for ability hover images*/
.popover-wrapper {
  position: relative;
  display: inline-block;
}
.popover-content {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: 300px;
  transform: translate(0, 10px);
  width: auto;
}

.popover-wrapper:hover + .popover-content {
  z-index: 10;
  opacity: 1;
  visibility: visible;
  transform: translate(0, 20px);
  transition: all 0.4s cubic-bezier(0.75, -0.02, 0.2, 0.97);
}

/* In game used colors for weapon, vitality, and spirit, respectively */
.weapon-orange {
  color: #d5903f; 
}

.vitality-green {
  color: #74b01c; 
}

.spirit-purple {
  color: #c288f0; 
}

.mw-page-title-main {
  font-family: "Forevs Demo Bold";
}

.infobox-hero-name {
  font-family: "Forevs Demo Bold";
  text-transform: uppercase;
}

/*HariySaag info for Hero Cards*/
@media screen and (max-width: 480px) {
  td:has(.hide-parent-td-mobile) {
    display: none;
  }
}