Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

MediaWiki:Citizen.css: Difference between revisions

MediaWiki interface page
No edit summary
Tag: Reverted
No edit summary
Tag: Manual revert
Line 86: Line 86:
     margin-bottom: 15px;
     margin-bottom: 15px;
     font-size: 0.95em;
     font-size: 0.95em;
}
.av-guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
    margin: 24px 0;
}
.av-guide-card {
    padding: 18px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 14px;
    background: rgba(255,255,255,0.04);
}
.av-guide-card h3 {
    margin-top: 0;
    margin-bottom: 8px;
}
.av-guide-card p:last-child {
    margin-bottom: 0;
}
}

Revision as of 00:40, 13 March 2026

body {
    background:
        linear-gradient(
            rgba(0, 0, 0, 0.65),
            rgba(0, 0, 0, 0.65)
        ),
        url("/resources/assets/agna.png") no-repeat center center fixed;
    background-size: cover;
}

.mw-body {
    background-color: rgba(10, 12, 16, 0.1) !important;
    border-radius: 12px;
}

/* CSS placed here will be applied to all skins */
/* Water Tribe theme */
.pi-theme-wt .pi-title,
.pi-theme-wt .pi-secondary-background {
  background-color: #275b8b;
  color: white;
}

/* Earth Kingdom theme */
.pi-theme-ek .pi-title,
.pi-theme-ek .pi-secondary-background {
  background-color: #317615;
  color: white;
}

/* Fire Nation theme */
.pi-theme-fn .pi-title,
.pi-theme-fn .pi-secondary-background {
  background-color: #760000;
  color: white;
}

/* Air Nomads theme */
.pi-theme-an .pi-title,
.pi-theme-an .pi-secondary-background {
  background-color: #e5cca3;
  color: white;
}

/* Sun Warriors theme */
.pi-theme-sw .pi-title,
.pi-theme-sw .pi-secondary-background {
  background-color: #e36424;
  color: white;
}

/* United Republic / Republic City theme */
.pi-theme-urn .pi-title,
.pi-theme-urn .pi-secondary-background {
  background-color: #7e579a;
  color: white;
}

/* Foggy Swamp Tribe theme */
.pi-theme-fst .pi-title,
.pi-theme-fst .pi-secondary-background {
  background-color: #008048;
  color: white;
}

/* Sand Tribes theme */
.pi-theme-st .pi-title,
.pi-theme-st .pi-secondary-background {
  background-color: #ba9e54;
  color: white;
}

.portable-infobox,
.pi-infobox {
	width: 360px;
	max-width: none;
}

/* Infobox styling */
.infobox-gallery {padding:4px; text-align:center; font-weight:bold}

.stubbox {
    border-left: 5px solid #e36424;
    background: #2a1a14;
    padding: 10px 15px;
    margin-bottom: 15px;
    font-size: 0.95em;
}