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
mNo edit summary
No edit summary
 
(7 intermediate revisions by the same user not shown)
Line 1: Line 1:
body {
/* DARK MODE */
.skin-theme-clientpref-night body {
     background:
     background:
         linear-gradient(
         linear-gradient(
Line 6: Line 7:
         ),
         ),
         url("/resources/assets/agna.png") no-repeat center center fixed;
         url("/resources/assets/agna.png") no-repeat center center fixed;
    background-size: cover;
}
/* LIGHT MODE */
.skin-theme-clientpref-day body {
    background:
        linear-gradient(
            rgba(255, 255, 255, 0.85),
            rgba(255, 255, 255, 0.85)
        ),
        url("/resources/assets/omashu.png") no-repeat center center fixed;
     background-size: cover;
     background-size: cover;
}
}
Line 16: Line 28:
/* CSS placed here will be applied to all skins */
/* CSS placed here will be applied to all skins */
/* Water Tribe theme */
/* Water Tribe theme */
.pi-theme-wt .pi-title,
.pi-theme-wt .pi-secondary-background {
.pi-theme-wt .pi-secondary-background {
   background-color: #275b8b;
   background-color: #275b8b;
Line 22: Line 35:


/* Earth Kingdom theme */
/* Earth Kingdom theme */
.pi-theme-ek .pi-title,
.pi-theme-ek .pi-secondary-background {
.pi-theme-ek .pi-secondary-background {
   background-color: #317615;
   background-color: #317615;
Line 28: Line 42:


/* Fire Nation theme */
/* Fire Nation theme */
.pi-theme-fn .pi-title,
.pi-theme-fn .pi-secondary-background {
.pi-theme-fn .pi-secondary-background {
   background-color: #760000;
   background-color: #760000;
Line 34: Line 49:


/* Air Nomads theme */
/* Air Nomads theme */
.pi-theme-an .pi-title,
.pi-theme-an .pi-secondary-background {
.pi-theme-an .pi-secondary-background {
   background-color: #e5cca3;
   background-color: #e5cca3;
Line 47: Line 63:


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


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


/* Sand Tribes theme */
/* Sand Tribes theme */
.pi-theme-st .pi-title,
.pi-theme-st .pi-secondary-background {
.pi-theme-st .pi-secondary-background {
   background-color: #ba9e54;
   background-color: #ba9e54;
Line 72: Line 91:
/* Infobox styling */
/* Infobox styling */
.infobox-gallery {padding:4px; text-align:center; font-weight:bold}
.infobox-gallery {padding:4px; text-align:center; font-weight:bold}
/* DARK MODE */
.skin-theme-clientpref-night .stubbox {
    border-left: 5px solid #e36424;
    background: #2a1a14;
    color: #f5e9e5; /* light text for readability */
    padding: 10px 15px;
    margin-bottom: 15px;
    font-size: 0.95em;
}
/* LIGHT MODE */
.skin-theme-clientpref-day .stubbox {
    border-left: 5px solid #e36424;
    background: #fdf1eb; /* soft warm tint instead of dark brown */
    color: #2a1a14; /* dark text */
    padding: 10px 15px;
    margin-bottom: 15px;
    font-size: 0.95em;
}

Latest revision as of 06:58, 1 May 2026

/* DARK MODE */
.skin-theme-clientpref-night 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;
}

/* LIGHT MODE */
.skin-theme-clientpref-day body {
    background:
        linear-gradient(
            rgba(255, 255, 255, 0.85),
            rgba(255, 255, 255, 0.85)
        ),
        url("/resources/assets/omashu.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}

/* DARK MODE */
.skin-theme-clientpref-night .stubbox {
    border-left: 5px solid #e36424;
    background: #2a1a14;
    color: #f5e9e5; /* light text for readability */
    padding: 10px 15px;
    margin-bottom: 15px;
    font-size: 0.95em;
}

/* LIGHT MODE */
.skin-theme-clientpref-day .stubbox {
    border-left: 5px solid #e36424;
    background: #fdf1eb; /* soft warm tint instead of dark brown */
    color: #2a1a14; /* dark text */
    padding: 10px 15px;
    margin-bottom: 15px;
    font-size: 0.95em;
}