Jump to content

MediaWiki:Common.css: Difference between revisions

From Wikitheism
Created page with "CSS placed here will be applied to all skins: Wikitheism Vector 2022 header fix: larger visible emblem, smaller wordmark: .vector-header-container, .mw-header, .vector-sticky-header { min-height: 76px !important; } .mw-logo, .vector-header-start .mw-logo { height: 72px !important; min-height: 72px !important; display: flex !important; align-items: center !important; gap: 12px !important; overflow: visible !important; } .mw-logo-icon { width: 6..."
 
No edit summary
 
(5 intermediate revisions by the same user not shown)
Line 1: Line 1:
/* CSS placed here will be applied to all skins */
/* Wikitheism header: globe/book/symbols icon + plain text title */
/* Wikitheism Vector 2022 header fix: larger visible emblem, smaller wordmark */
.mw-logo {
.vector-header-container,
    display: inline-flex !important;
.mw-header,
    flex-direction: row !important;
.vector-sticky-header {
    align-items: center !important;
  min-height: 76px !important;
    gap: 12px !important;
}
    min-width: 0 !important;
 
    width: auto !important;
.mw-logo,
    white-space: nowrap !important;
.vector-header-start .mw-logo {
  height: 72px !important;
  min-height: 72px !important;
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  overflow: visible !important;
}
}


.mw-logo-icon {
.mw-logo-icon {
  width: 64px !important;
    width: 56px !important;
  height: 64px !important;
    height: 42px !important;
  min-width: 64px !important;
    min-width: 56px !important;
  max-width: 64px !important;
    max-width: 56px !important;
  object-fit: contain !important;
    max-height: 42px !important;
  object-position: center !important;
    object-fit: contain !important;
  margin: 0 !important;
    display: inline-block !important;
  padding: 0 !important;
    vertical-align: middle !important;
  display: block !important;
}
}


.mw-logo-container,
.mw-logo-wordmark,
.mw-logo-wordmark,
.mw-logo-tagline {
.mw-logo-tagline {
  overflow: visible !important;
    display: none !important;
}
}


.mw-logo-wordmark {
.mw-logo::after {
  width: 190px !important;
    content: "Wikitheism";
  max-width: 190px !important;
    display: inline-block !important;
  height: auto !important;
    font-family: Georgia, "Times New Roman", serif !important;
  max-height: 44px !important;
    font-size: 18px !important;
  object-fit: contain !important;
    font-weight: 400 !important;
}
    color: #202122 !important;
 
    line-height: 1 !important;
.mw-logo-tagline {
    white-space: nowrap !important;
  display: none !important;
    margin: 0 !important;
    padding: 0 !important;
    vertical-align: middle !important;
}
}


.vector-header-container,
.vector-header-start {
.vector-header-start {
  align-items: center !important;
     min-height: 60px !important;
}
     align-items: center !important;
 
@media (max-width: 700px) {
  .mw-logo-icon {
    width: 54px !important;
    height: 54px !important;
     min-width: 54px !important;
     max-width: 54px !important;
  }
  .mw-logo-wordmark {
    width: 150px !important;
    max-width: 150px !important;
  }
}
}

Latest revision as of 23:39, 21 May 2026

/* Wikitheism header: globe/book/symbols icon + plain text title */
.mw-logo {
    display: inline-flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 12px !important;
    min-width: 0 !important;
    width: auto !important;
    white-space: nowrap !important;
}

.mw-logo-icon {
    width: 56px !important;
    height: 42px !important;
    min-width: 56px !important;
    max-width: 56px !important;
    max-height: 42px !important;
    object-fit: contain !important;
    display: inline-block !important;
    vertical-align: middle !important;
}

.mw-logo-wordmark,
.mw-logo-tagline {
    display: none !important;
}

.mw-logo::after {
    content: "Wikitheism";
    display: inline-block !important;
    font-family: Georgia, "Times New Roman", serif !important;
    font-size: 18px !important;
    font-weight: 400 !important;
    color: #202122 !important;
    line-height: 1 !important;
    white-space: nowrap !important;
    margin: 0 !important;
    padding: 0 !important;
    vertical-align: middle !important;
}

.vector-header-container,
.vector-header-start {
    min-height: 60px !important;
    align-items: center !important;
}