User:Editingthingsforlife/vector-2022.css: Difference between revisions

Editingthingsforlife (talk | contribs)
No edit summary
Editingthingsforlife (talk | contribs)
No edit summary
Line 1: Line 1:
/* Eerie theme for Miraheze/WikiOasis Vector-2022 skin */
/* General Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
 
body {
  font-family: 'Roboto Condensed', sans-serif;
  background-color: #1a0d00; /* Very dark brown */
  color: #fff; /* White */
}
 
/* Container for Sidebar and Main Content */
.container {
  display: flex;
  min-height: 100vh;
}
 
/* Sidebar */
.sidebar {
  width: 220px;
  background: linear-gradient(180deg, #2b1a07, #1a0d00); /* Gradient from dark brown to very dark brown */
  padding: 15px;
  border-right: 3px double #ffd700; /* Gold double border */
  box-shadow: 3px 0 10px rgba(0, 0, 0, 0.5);
}
 
.logo {
  text-align: center;
  margin-bottom: 25px;
}
 
.logo img {
  max-width: 80px;
  border-radius: 10px;
  border: 2px solid #ff4040; /* Red border */
  box-shadow: 0 0 8px rgba(255, 64, 64, 0.5);
}
 
.sidebar h2 {
  font-family: 'Special Elite', cursive;
  font-size: 1.3em;
  color: #ff4040; /* Red */
  margin: 20px 0 10px;
  text-transform: uppercase;
  text-shadow: 1px 1px 2px #000;
  border-bottom: 1px dashed #8b5a2b; /* Medium brown dashed border */
  padding-bottom: 5px;
}
 
.sidebar ul {
  list-style: none;
}
 
.nav-links li, .community-links li {
  margin: 8px 0;
}
 
.nav-links a, .community-links a {
  color: #ffd700; /* Gold */
  text-decoration: none;
  font-size: 1em;
  display: block;
  padding: 8px;
  border-radius: 5px;
  transition: all 0.3s ease;
  background: rgba(0, 0, 0, 0.3);
  border-left: 4px solid transparent;
}
 
.nav-links a:hover, .community-links a:hover {
  background: #ff4040; /* Red */
  color: #fff;
  border-left: 4px solid #ffd700; /* Gold */
  box-shadow: 0 0 5px rgba(255, 64, 64, 0.5);
}
 
/* Main Content */
.main-content {
  flex: 1;
  /* Replace 'your-background-image.jpg' with your desired background image URL */
  background: url('your-background-image.jpg') no-repeat center center/cover;
  padding: 30px;
  position: relative;
}
 
/* Header Bar with Tabs */
.header-bar {
  background: #000; /* Black */
  padding: 10px;
  margin-bottom: 30px;
  border-bottom: 2px solid #ff4040; /* Red */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
}
 
.tabs {
  display: flex;
  gap: 20px;
}
 
.tabs a {
  color: #ffd700; /* Gold */
  text-decoration: none;
  font-size: 1em;
  font-family: 'Special Elite', cursive;
  padding: 8px 15px;
  border-radius: 3px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}
 
.tabs a.active {
  background: #ff4040; /* Red */
  color: #fff;
  border: 1px solid #ffd700; /* Gold */
}
 
.tabs a:hover {
  background: #8b5a2b; /* Medium brown */
  color: #fff;
  border: 1px solid #ff4040; /* Red */
}
 
/* Hero Section */
.hero-section {
  text-align: center;
  padding: 40px 20px;
  background: rgba(0, 0, 0, 0.8); /* Black with transparency */
  border: 2px solid #8b5a2b; /* Medium brown */
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 0 15px rgba(255, 64, 64, 0.3);
}
 
.hero-section h1 {
  font-family: 'Special Elite', cursive;
  font-size: 4em;
  color: #ff4040; /* Red */
  text-transform: uppercase;
  text-shadow: 3px 3px 5px #000, 0 0 10px #ffd700; /* Black and gold shadow */
  margin-bottom: 20px;
}
 
.hero-section p {
  font-size: 1.3em;
  color: #fff; /* White */
  text-shadow: 1px 1px 2px #000;
}
 
/* Navigation Table */
.navigation table {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  background: rgba(43, 26, 7, 0.95); /* Dark brown with transparency */
  border-collapse: separate;
  border-spacing: 0;
  border: 2px solid #ff4040; /* Red */
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
 
.navigation th, .navigation td {
  padding: 12px;
  text-align: center;
  border: 1px solid #8b5a2b; /* Medium brown */
}
 
.navigation th {
  background: #ff4040; /* Red */
  color: #fff;
  font-family: 'Special Elite', cursive;
  font-size: 1.2em;
  text-shadow: 1px 1px 2px #000;
}
 
.navigation td {
  background: #1a0d00; /* Very dark brown */
}
 
.table-link {
  color: #ffd700; /* Gold */
  text-decoration: none;
  display: block;
  padding: 8px;
  transition: all 0.3s ease;
}
 
.table-link:hover {
  background: #ff4040; /* Red */
  color: #fff;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.5);
}
 
/* Responsive Design */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }
 
  .sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 3px double #ffd700;
  }
 
  .hero-section h1 {
    font-size: 2.5em;
  }
 
  .hero-section p {
    font-size: 1.1em;
  }
 
  .navigation table {
    max-width: 100%;
  }
}
 
/* General Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


/* Global styles */
body {
body {
    background: #16191C; /* Dark, muted gray for background */
  font-family: 'Roboto Condensed', sans-serif;
    color: #BFC6CC; /* Desaturated off-white for text */
  background-color: #1a0d00; /* Very dark brown */
    font-family: 'Arial', sans-serif;
  color: #fff; /* White */
    font-weight: 300;
}
    font-size: 1em;
 
    margin: 0;
/* Container for Sidebar and Main Content */
    padding: 0;
.container {
  display: flex;
  min-height: 100vh;
}
 
/* Sidebar */
.sidebar {
  width: 220px;
  background: linear-gradient(180deg, #2b1a07, #1a0d00); /* Gradient from dark brown to very dark brown */
  padding: 15px;
  border-right: 3px double #ffd700; /* Gold double border */
  box-shadow: 3px 0 10px rgba(0, 0, 0, 0.5);
}
 
.logo {
  text-align: center;
  margin-bottom: 25px;
}
 
.logo img {
  max-width: 80px;
  border-radius: 10px;
  border: 2px solid #ff4040; /* Red border */
  box-shadow: 0 0 8px rgba(255, 64, 64, 0.5);
}
 
.sidebar h2 {
  font-family: 'Special Elite', cursive;
  font-size: 1.3em;
  color: #ff4040; /* Red */
  margin: 20px 0 10px;
  text-transform: uppercase;
  text-shadow: 1px 1px 2px #000;
  border-bottom: 1px dashed #8b5a2b; /* Medium brown dashed border */
  padding-bottom: 5px;
}
 
.sidebar ul {
  list-style: none;
}
 
.nav-links li, .community-links li {
  margin: 8px 0;
}
 
.nav-links a, .community-links a {
  color: #ffd700; /* Gold */
  text-decoration: none;
  font-size: 1em;
  display: block;
  padding: 8px;
  border-radius: 5px;
  transition: all 0.3s ease;
  background: rgba(0, 0, 0, 0.3);
  border-left: 4px solid transparent;
}
 
.nav-links a.active {
  background: #ff4040; /* Red */
  color: #fff;
  border-left: 4px solid #ffd700; /* Gold */
  box-shadow: 0 0 5px rgba(255, 64, 64, 0.5);
}
 
.nav-links a:hover, .community-links a:hover {
  background: #ff4040; /* Red */
  color: #fff;
  border-left: 4px solid #ffd700; /* Gold */
  box-shadow: 0 0 5px rgba(255, 64, 64, 0.5);
}
 
/* Main Content */
.main-content {
  flex: 1;
  /* Replace 'your-background-image.jpg' with your desired background image URL */
  background: url('your-background-image.jpg') no-repeat center center/cover;
  padding: 30px;
  position: relative;
}
 
/* Header Bar with Tabs */
.header-bar {
  background: #000; /* Black */
  padding: 10px;
  margin-bottom: 30px;
  border-bottom: 2px solid #ff4040; /* Red */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
}
}


/* Remove default padding and margins for a cleaner look */
.tabs {
.mw-page-container {
  display: flex;
    background: transparent; /* Allow body background to show */
  gap: 20px;
    padding: 0;
    border: none;
}
}


/* Header (top bar) */
.tabs a {
.vector-header-container {
  color: #ffd700; /* Gold */
    background: #1C2125; /* Slightly lighter dark gray */
  text-decoration: none;
    border-bottom: 1px solid #2F363D;
  font-size: 1em;
    padding: 5px 0;
  font-family: 'Special Elite', cursive;
  padding: 8px 15px;
  border-radius: 3px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}
}


#mw-head {
.tabs a.active {
    background: #1C2125;
  background: #ff4040; /* Red */
  color: #fff;
  border: 1px solid #ffd700; /* Gold */
}
}


#mw-head a {
.tabs a:hover {
    color: #BFC6CC;
  background: #8b5a2b; /* Medium brown */
  color: #fff;
  border: 1px solid #ff4040; /* Red */
}
}


#mw-head a:hover {
/* Monsters Section */
    color: #6B7A85; /* Muted blue on hover */
.monsters-section {
  margin-bottom: 40px;
}
}


/* Site notice (banner below header) */
.monsters-section h1 {
#siteNotice {
  font-family: 'Special Elite', cursive;
    background: #2F363D;
  font-size: 2.5em;
    color: #BFC6CC;
  color: #ff4040; /* Red */
    padding: 8px;
  text-align: center;
    text-align: center;
  text-transform: uppercase;
    border-bottom: 1px solid #2F363D;
  text-shadow: 2px 2px 4px #000, 0 0 8px #ffd700; /* Black and gold shadow */
  margin-bottom: 20px;
  border-bottom: 2px solid #8b5a2b; /* Medium brown */
  padding-bottom: 10px;
}
 
/* Gallery */
.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.8); /* Black with transparency */
  border: 2px solid #8b5a2b; /* Medium brown */
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(255, 64, 64, 0.3);
}
 
.gallery-item {
  text-align: center;
  width: 120px;
}
 
.gallery-item img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 5px;
  border: 2px solid #ff4040; /* Red */
  box-shadow: 0 0 5px rgba(255, 64, 64, 0.5);
  margin-bottom: 5px;
  transition: transform 0.3s ease;
}
 
.gallery-item img:hover {
  transform: scale(1.1);
}
 
.monster-link {
  display: inline-block;
  font-family: 'Special Elite', cursive;
  font-size: 0.9em;
  color: #ffd700; /* Gold */
  text-decoration: none;
  background: linear-gradient(45deg, #2b1a07, #1a0d00); /* Gradient
 
  /* General Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
 
body {
  font-family: 'Roboto Condensed', sans-serif;
  background-color: #1a0d00; /* Very dark brown */
  color: #fff; /* White */
}
 
/* Container for Sidebar and Main Content */
.container {
  display: flex;
  min-height: 100vh;
}
}


/* Sidebar */
/* Sidebar */
.vector-menu-portal .vector-menu-content {
.sidebar {
    background: #1C2125;
  width: 220px;
    border-right: 1px solid #2F363D;
  background: linear-gradient(180deg, #2b1a07, #1a0d00); /* Gradient from dark brown to very dark brown */
  padding: 15px;
  border-right: 3px double #ffd700; /* Gold double border */
  box-shadow: 3px 0 10px rgba(0, 0, 0, 0.5);
}
 
.logo {
  text-align: center;
  margin-bottom: 25px;
}
 
.logo img {
  max-width: 80px;
  border-radius: 10px;
  border: 2px solid #ff4040; /* Red border */
  box-shadow: 0 0 8px rgba(255, 64, 64, 0.5);
}
 
.sidebar h2 {
  font-family: 'Special Elite', cursive;
  font-size: 1.3em;
  color: #ff4040; /* Red */
  margin: 20px 0 10px;
  text-transform: uppercase;
  text-shadow: 1px 1px 2px #000;
  border-bottom: 1px dashed #8b5a2b; /* Medium brown dashed border */
  padding-bottom: 5px;
}
 
.sidebar ul {
  list-style: none;
}
 
.nav-links li, .community-links li {
  margin: 8px 0;
}
 
.nav-links a, .community-links a {
  color: #ffd700; /* Gold */
  text-decoration: none;
  font-size: 1em;
  display: block;
  padding: 8px;
  border-radius: 5px;
  transition: all 0.3s ease;
  background: rgba(0, 0, 0, 0.3);
  border-left: 4px solid transparent;
}
 
.nav-links a.active {
  background: #ff4040; /* Red */
  color: #fff;
  border-left: 4px solid #ffd700; /* Gold */
  box-shadow: 0 0 5px rgba(255, 64, 64, 0.5);
}
 
.nav-links a:hover, .community-links a:hover {
  background: #ff4040; /* Red */
  color: #fff;
  border-left: 4px solid #ffd700; /* Gold */
  box-shadow: 0 0 5px rgba(255, 64, 64, 0.5);
}
 
/* Main Content */
.main-content {
  flex: 1;
  /* Replace 'your-background-image.jpg' with your desired background image URL */
  background: url('your-background-image.jpg') no-repeat center center/cover;
  padding: 30px;
  position: relative;
}
 
/* Header Bar with Tabs */
.header-bar {
  background: #000; /* Black */
  padding: 10px;
  margin-bottom: 30px;
  border-bottom: 2px solid #ff4040; /* Red */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
}
}


.vector-menu-portal h3 {
.tabs {
    color: #BFC6CC;
  display: flex;
    font-weight: 400;
  gap: 20px;
    border-bottom: 1px solid #2F363D;
    padding: 5px 10px;
}
}


.vector-menu-portal .vector-menu-content li a {
.tabs a {
    color: #6B7A85;
  color: #ffd700; /* Gold */
    transition: color 0.3s ease;
  text-decoration: none;
  font-size: 1em;
  font-family: 'Special Elite', cursive;
  padding: 8px 15px;
  border-radius: 3px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}
}


.vector-menu-portal .vector-menu-content li a:hover {
.tabs a.active {
    color: #BFC6CC;
  background: #ff4040; /* Red */
  color: #fff;
  border: 1px solid #ffd700; /* Gold */
}
}


/* Main content area */
.tabs a:hover {
#mw-content-text {
  background: #8b5a2b; /* Medium brown */
    position: relative;
  color: #fff;
    background: url('/wiki/Special:FilePath/Background.jpg') center/cover no-repeat; /* Replace with your image */
  border: 1px solid #ff4040; /* Red */
    min-height: 400px; /* Adjust based on image size */
    color: transparent; /* Hide default text to allow overlay */
    margin: 0;
    padding: 0;
}
}


/* Overlay text (e.g., "Descent Wiki") */
/* Content Section */
#mw-content-text::before {
.content-section {
    content: "Descent Wiki"; /* Replace with your wiki's name */
  background: rgba(0, 0, 0, 0.8); /* Black with transparency */
    position: absolute;
  padding: 20px;
    top: 40%;
  border: 2px solid #8b5a2b; /* Medium brown */
    left: 50%;
  border-radius: 10px;
    transform: translate(-50%, -50%);
  box-shadow: 0 0 15px rgba(255, 64, 64, 0.3);
    font-size: 6em;
    font-weight: 700;
    color: #BFC6CC;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.8);
    z-index: 1;
}
}


/* Welcome message below the background image */
.content-section h1 {
.mw-parser-output p {
  font-family: 'Special Elite', cursive;
    color: #BFC6CC;
  font-size: 2.5em;
    text-align: center;
  color: #ff4040; /* Red */
    margin-top: 420px; /* Adjust based on background image height */
  text-transform: uppercase;
    font-size: 1.2em;
  text-shadow: 2px 2px 4px #000, 0 0 8px #ffd700; /* Black and gold shadow */
  margin-bottom: 20px;
  border-bottom: 2px solid #8b5a2b; /* Medium brown */
  padding-bottom: 10px;
}
}


/* Links in content */
.content-section h2 {
.mw-body a {
  font-family: 'Special Elite', cursive;
    color: #6B7A85;
  font-size: 1.8em;
    text-decoration: none;
  color: #ff4040; /* Red */
    transition: color 0.3s ease;
  margin: 20px 0 10px;
  text-shadow: 1px 1px 2px #000;
}
}


.mw-body a:hover {
.content-section p {
    color: #BFC6CC;
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 15px;
}
}


/* Footer */
.content-section em {
.footer {
  color: #ffd700; /* Gold */
    background: #1C2125;
  font-style: italic;
    color: #BFC6CC;
    border-top: 1px solid #2F363D;
    padding: 10px;
    text-align: center;
}
}


/* Subtle animation for content */
/* Infobox */
.mw-parser-output {
.infobox {
    animation: eerieFade 2s ease-in;
  float: right;
  width: 250px;
  background: linear-gradient(45deg, #2b1a07, #1a0d00); /* Gradient from dark brown to very dark brown */
  border: 2px solid #ff4040; /* Red */
  border-radius: 8px;
  padding: 15px;
  margin: 0 0 20px 20px;
  box-shadow: 0 0 10px rgba(255, 64, 64, 0.5);
}
}


@keyframes eerieFade {
.infobox-header {
    0% { opacity: 0.5; }
  font-family: 'Special Elite', cursive;
    100% { opacity: 1; }
  font-size: 1.5em;
  color: #ffd700; /* Gold */
  text-align: center;
  text-shadow: 1px 1px 2px #000;
  border-bottom: 1px solid #8b5a2b; /* Medium brown */
  padding-bottom: 10px;
  margin-bottom: 15px;
}
}


/* Selection styling */
.infobox-image img {
::selection {
  width: 100%;
     background: #2F363D;
  height: auto;
     color: #BFC6CC;
  border-radius: 5px;
  border: 2px solid #8b5a2b; /* Medium brown */
  margin-bottom: 15px;
}
 
.infobox-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
 
.infobox-label {
  font-family: 'Special Elite', cursive;
  font-size: 1em;
  color: #ff4040; /* Red */
  text-shadow: 1px 1px 1px #000;
}
 
.infobox-value {
  font-size: 1em;
  color: #fff; /* White */
}
 
/* Responsive Design */
@media (max-width: 768px) {
  .container {
     flex-direction: column;
  }
 
  .sidebar {
    width: 100%;
    border-right: none;
Larger screens */
@media (min-width: 769px) {
  .content-section {
    margin-right: 270px; /* Space for the infobox */
  }
}
 
/* Smaller screens */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }
 
  .sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 3px double #ffd700;
  }
 
  .content-section h1 {
    font-size: 2em;
  }
 
  .infobox {
     float: none;
    width: 100%;
    margin: 0 0 20px 0;
  }
 
  .content-section {
    margin-right: 0; /* Remove margin on smaller screens */
  }
}
}