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:
/* Header styling */
/* === ConquestPS Wiki global styles === */
 
/* Sticky dark header with gold accents */
.site-header {
.site-header {
   position: sticky;
   position: sticky;
Line 8: Line 10:
   box-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
   box-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}
}
.site-header-inner {
.site-header-inner {
   display: flex;
   display: flex;
Line 16: Line 19:
   margin: 0 auto;
   margin: 0 auto;
}
}
.site-logo img {
.site-logo img {
   vertical-align: middle;
   vertical-align: middle;
   margin-right: 15px;
   margin-right: 15px;
}
}
.site-nav a {
.site-nav a {
   color: #ffd65a;
   color: #ffd65a;
Line 31: Line 36:
   border: 1px solid rgba(255, 214, 90, 0.15);
   border: 1px solid rgba(255, 214, 90, 0.15);
}
}
.site-nav a:hover {
.site-nav a:hover {
   background: rgba(255, 214, 90, 0.15);
   background: rgba(255, 214, 90, 0.15);
   text-shadow: 0 0 6px rgba(255, 214, 90, 0.8);
   text-shadow: 0 0 6p
}

Revision as of 06:13, 12 November 2025

/* === ConquestPS Wiki global styles === */

/* Sticky dark header with gold accents */
.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 6p