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:
/* Main Page Styling */
/* Header styling */
.main-hero h1 {
  font-family: "Orbitron", sans-serif;
  letter-spacing: 1px;
}
 
.main-hero p {
  font-size: 1.15em;
  color: #aaa;
}
 
.citizen-main-container a {
  text-decoration: none;
}
 
.citizen-main-container a:hover {
  color: #fff;
}
/* --- Custom Site Header & Footer for ConquestPS --- */
 
/* HEADER */
.site-header {
.site-header {
  background: #0e0e0e;
  border-bottom: 1px solid rgba(255,255,255,0.1);
   position: sticky;
   position: sticky;
   top: 0;
   top: 0;
   z-index: 999;
   z-index: 1000;
   padding: 8px 0;
   background: #0a0a0a;
  border-bottom: 1px solid rgba(255, 214, 90, 0.2);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}
}
.site-header-inner {
.site-header-inner {
Line 32: Line 12:
   align-items: center;
   align-items: center;
   justify-content: space-between;
   justify-content: space-between;
   max-width: 1100px;
  padding: 10px 25px;
   max-width: 1200px;
   margin: 0 auto;
   margin: 0 auto;
  padding: 0 20px;
}
}
.site-logo img {
.site-logo img {
   vertical-align: middle;
   vertical-align: middle;
  margin-right: 15px;
}
}
.site-nav a {
.site-nav a {
   color: #ffd65a;
   color: #ffd65a;
  font-weight: 500;
   text-decoration: none;
   text-decoration: none;
   margin: 0 10px;
   margin: 0 10px;
  font-weight: 600;
  transition: 0.2s ease;
  padding: 6px 10px;
  border-radius: 8px;
  background: rgba(255, 214, 90, 0.05);
  border: 1px solid rgba(255, 214, 90, 0.15);
}
}
.site-nav a:hover {
.site-nav a:hover {
   text-decoration: underline;
   background: rgba(255, 214, 90, 0.15);
}
   text-shadow: 0 0 6px rgba(255, 214, 90, 0.8);
 
/* FOOTER */
.site-footer {
  border-top: 1px solid rgba(255,255,255,0.1);
   margin-top: 50px;
  padding: 20px 0;
  background: #0e0e0e;
}
.site-footer-inner {
  text-align: center;
  font-size: 0.9rem;
  color: #aaa;
}
.site-footer-inner a {
  color: #ffd65a;
  text-decoration: none;
}
.site-footer-inner a:hover {
  text-decoration: underline;
}
}

Revision as of 06:12, 12 November 2025

/* Header styling */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #0a0a0a;
  border-bottom: 1px solid rgba(255, 214, 90, 0.2);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}
.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 25px;
  max-width: 1200px;
  margin: 0 auto;
}
.site-logo img {
  vertical-align: middle;
  margin-right: 15px;
}
.site-nav a {
  color: #ffd65a;
  text-decoration: none;
  margin: 0 10px;
  font-weight: 600;
  transition: 0.2s ease;
  padding: 6px 10px;
  border-radius: 8px;
  background: rgba(255, 214, 90, 0.05);
  border: 1px solid rgba(255, 214, 90, 0.15);
}
.site-nav a:hover {
  background: rgba(255, 214, 90, 0.15);
  text-shadow: 0 0 6px rgba(255, 214, 90, 0.8);
}