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

MediaWiki:Common.css: Difference between revisions

MediaWiki interface page
No edit summary
No edit summary
Line 1: Line 1:
/* =========================================================
/* ===========================
   🟡 ConquestPS Wiki Common CSS
   ConquestPS – Main Page styles
   Works with Citizen skin (dark theme optimized)
   =========================== */
  ========================================================= */


/* ====== GLOBAL ====== */
/* Hero */
body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  color: #e5e5e5;
  background-color: #0e0e0e;
}
 
a {
  color: #ffd65a;
  text-decoration: none;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}
 
a:hover {
  color: #fff;
  text-shadow: 0 0 6px rgba(255, 214, 90, 0.7);
}
 
/* ====== MAIN PAGE HERO ====== */
.mainpage-hero {
.mainpage-hero {
   text-align: center;
   text-align: center;
   margin: 20px auto 28px;
   margin: 10px auto 24px;
}
}
.mainpage-title {
.mainpage-title {
   font-size: 32px;
   font-size: 28px;
   font-weight: 800;
   font-weight: 800;
  color: #ffd65a;
   letter-spacing: .3px;
   letter-spacing: 0.4px;
   margin-top: 8px;
   margin-top: 10px;
}
}
.mainpage-sub {
.mainpage-sub {
   opacity: 0.8;
   opacity: .8;
   margin-top: 6px;
   margin-top: 4px;
  font-size: 15px;
  color: #ccc;
}
}


/* ====== CARD GRID ====== */
/* Grid */
.mainpage-grid {
.mainpage-grid {
   display: grid;
   display: grid;
   grid-template-columns: repeat(4, minmax(0, 1fr));
   grid-template-columns: repeat(4, minmax(0, 1fr));
   gap: 18px;
   gap: 16px;
   max-width: 1100px;
   max-width: 1100px;
   margin: 24px auto;
   margin: 24px auto;
   padding: 0 12px;
   padding: 0 12px;
}
}
@media (max-width: 1000px) {
@media (max-width: 1000px) {
   .mainpage-grid {
   .mainpage-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
}
@media (max-width: 560px) {
@media (max-width: 560px) {
   .mainpage-grid {
   .mainpage-grid { grid-template-columns: 1fr; }
    grid-template-columns: 1fr;
  }
}
}


/* ====== CARD STYLE ====== */
/* Cards */
.mainpage-card {
.mainpage-card {
   background: rgba(255, 214, 90, 0.06);
   background: rgba(255,214,90,.06);
   border: 1px solid rgba(255, 214, 90, 0.18);
   border: 1px solid rgba(255,214,90,.18);
   border-radius: 14px;
   border-radius: 14px;
   transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease;
  padding: 16px 18px;
   transition: transform .12s ease, box-shadow .12s ease, background .12s ease, border-color .12s ease;
}
}
.mainpage-card:hover {
.mainpage-card:hover {
   background: rgba(255, 214, 90, 0.12);
   background: rgba(255,214,90,.12);
   border-color: rgba(255, 214, 90, 0.35);
   border-color: rgba(255,214,90,.35);
   box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
   box-shadow: 0 6px 18px rgba(0,0,0,.35);
   transform: translateY(-2px);
   transform: translateY(-2px);
}
}


/* Make the whole card clickable */
/* Make the whole card a link */
.mainpage-card-link {
.mainpage-card-link {
   display: block;
   display: block;
   padding: 18px 20px;
   color: inherit !important;
   text-decoration: none !important;
   text-decoration: none !important;
  color: inherit;
}
}


/* Card text */
.mainpage-card-title {
.mainpage-card-title {
   font-weight: 700;
   font-weight: 700;
   margin-bottom: 6px;
   margin-bottom: 6px;
   color: #ffd65a;
   color: #ffd65a;
   font-size: 17px;
}
.mainpage-card-title a {
  text-decoration: none !important;
  color: #ffd65a !important;
  display: inline-block;
}
.mainpage-card-title a:hover,
.mainpage-card-link:hover .mainpage-card-title {
   text-shadow: 0 0 6px rgba(255, 214, 90, 0.8);
}
}


.mainpage-card-desc {
.mainpage-card-desc {
   opacity: 0.85;
   opacity: .85;
   line-height: 1.45;
   line-height: 1.45;
  color: #ccc;
}
}


/* ====== UPDATES SECTION ====== */
/* Updates section */
.mainpage-updates {
.mainpage-updates {
   max-width: 900px;
   max-width: 900px;
   margin: 36px auto 20px;
   margin: 28px auto 10px;
   padding: 0 12px;
   padding: 0 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 12px;
}
}


.mainpage-updates b, .mainpage-updates strong {
/* ======= Footer polish (optional) ======= */
   color: #ffd65a;
.citizen-footer__poweredby {
   display: none !important; /* hide "Powered by MediaWiki" button */
}
}


/* ====== FOOTER CLEANUP ====== */
/*
.citizen-footer__poweredby {
  === Debug helper (temporary) ===
   display: none !important; /* Hides the MediaWiki badge */
  If you *still* see scrollable code boxes on the Main Page,
}
  it means the page is being parsed as <pre> due to leading spaces.
   You can uncomment the block below to “hide” that look while you fix
  the indentation, but don’t keep it long-term.


footer,
.mw-parser-output pre {
#footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 20px;
  padding-top: 12px;
  color: #aaa;
   background: transparent;
   background: transparent;
  border: 0;
  padding: 0;
  overflow: visible;
  white-space: normal;
  font-family: inherit;
  color: inherit;
}
}
 
*/
.footer-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 10px 24px;
}
 
.footer-left,
.footer-center,
.footer-right {
  color: #ccc;
  font-size: 14px;
  margin: 6px 0;
}
 
.footer-right a {
  color: #ffd65a;
  text-decoration: none;
}
 
.footer-right a:hover {
  color: #fff;
}
 
/* ====== LOGO POLISH ====== */
img[alt="ConquestPS Logo"] {
  border-radius: 6px;
  margin-bottom: 8px;
}
 
/* ====== SMALL FIXES ====== */
li {
  margin-bottom: 4px;
}
 
h1, h2, h3, h4, h5 {
  color: #ffd65a;
  font-weight: 700;
}

Revision as of 07:40, 12 November 2025

/* ===========================
   ConquestPS – Main Page styles
   =========================== */

/* Hero */
.mainpage-hero {
  text-align: center;
  margin: 10px auto 24px;
}
.mainpage-title {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: .3px;
  margin-top: 8px;
}
.mainpage-sub {
  opacity: .8;
  margin-top: 4px;
}

/* Grid */
.mainpage-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: 1100px;
  margin: 24px auto;
  padding: 0 12px;
}
@media (max-width: 1000px) {
  .mainpage-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .mainpage-grid { grid-template-columns: 1fr; }
}

/* Cards */
.mainpage-card {
  background: rgba(255,214,90,.06);
  border: 1px solid rgba(255,214,90,.18);
  border-radius: 14px;
  padding: 16px 18px;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease, border-color .12s ease;
}
.mainpage-card:hover {
  background: rgba(255,214,90,.12);
  border-color: rgba(255,214,90,.35);
  box-shadow: 0 6px 18px rgba(0,0,0,.35);
  transform: translateY(-2px);
}

/* Make the whole card a link */
.mainpage-card-link {
  display: block;
  color: inherit !important;
  text-decoration: none !important;
}

/* Card text */
.mainpage-card-title {
  font-weight: 700;
  margin-bottom: 6px;
  color: #ffd65a;
}
.mainpage-card-title a {
  text-decoration: none !important;
  color: #ffd65a !important;
  display: inline-block;
}
.mainpage-card-title a:hover,
.mainpage-card-link:hover .mainpage-card-title {
  text-shadow: 0 0 6px rgba(255, 214, 90, 0.8);
}

.mainpage-card-desc {
  opacity: .85;
  line-height: 1.45;
}

/* Updates section */
.mainpage-updates {
  max-width: 900px;
  margin: 28px auto 10px;
  padding: 0 12px;
}

/* ======= Footer polish (optional) ======= */
.citizen-footer__poweredby {
  display: none !important; /* hide "Powered by MediaWiki" button */
}

/*
  === Debug helper (temporary) ===
  If you *still* see scrollable code boxes on the Main Page,
  it means the page is being parsed as <pre> due to leading spaces.
  You can uncomment the block below to “hide” that look while you fix
  the indentation, but don’t keep it long-term.

.mw-parser-output pre {
  background: transparent;
  border: 0;
  padding: 0;
  overflow: visible;
  white-space: normal;
  font-family: inherit;
  color: inherit;
}
*/