MediaWiki:Common.css: Difference between revisions

From Ages of Conflict
Content added Content deleted
No edit summary
No edit summary
Line 16: Line 16:
}
}


.MPElement {
.NavB .wds-button:focus,
width: 300px;
.NavB .wds-button:hover,
padding: 20px;
.NavB .wds-button {
background-color: #FF0000;
background-color: #F5F5DC; /* Beige color */
border: none;
border: 1px solid #888; /* Border color */
margin-bottom: 10px; /* Space between boxes */
}
}


.NavB .wds-button:hover {
.MPElement:hover {
background-image: linear-gradient(
background-color: #EEE8AA; /* Darker beige color on hover */
rgba(0, 0, 0, 0.3),
rgba(0, 0, 0, 0.3)
);
}
}


.MPElement h2 {
.myBox:hover {
margin: 0; /* Remove default margin */
background-color: #101010;
padding-bottom: 10px; /* Space between title and line */
border-bottom: 1px solid #888; /* Line beneath the title */
}
}

Revision as of 00:15, 19 November 2023

/*COMMUNITY HEADER drop shadow*/
.theme-fandomdesktop-light .fandom-community-header {
    filter: drop-shadow(0px 0px 6px #Ffd700) drop-shadow(0px 0px 2px #Ffd700);
    z-index: 200;
}
.theme-fandomdesktop-dark .fandom-community-header {
    filter: drop-shadow(0px 0px 6px #Ffd700) drop-shadow(0px 0px 2px #Ffd700);
    z-index: 200;
}

a[href="/wiki/User:Cosmoj0sh"]  {color:violet; font-weight:bold; filter:drop-shadow(0px 0px 2px #B200FF);}

#navbar a:hover {
    background-color: #ddd;
    color: black;
}

.MPElement {
  width: 300px;
  padding: 20px;
  background-color: #F5F5DC; /* Beige color */
  border: 1px solid #888; /* Border color */
  margin-bottom: 10px; /* Space between boxes */
}

.MPElement:hover {
  background-color: #EEE8AA; /* Darker beige color on hover */
}

.MPElement h2 {
  margin: 0; /* Remove default margin */
  padding-bottom: 10px; /* Space between title and line */
  border-bottom: 1px solid #888; /* Line beneath the title */
}