We are actively looking for staff to help us build the wiki. If you are interested please join our Discord server and apply.
MediaWiki:Common.css
Note: After publishing, you may have to bypass your browser's cache to see the changes.
- Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
- Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
- Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
- Opera: Press Ctrl-F5.
/* CSS placed here will be applied to all skins */
@import "/index.php?title=MediaWiki:Common.css/homepage.css&action=raw&ctype=text/css";
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');
body {
font-family: "Inter", sans-serif;
}
:root {
--navbox-background-color: #FFF;
--navbox-border-color: #CCC;
--navbox-header-color: #CCC;
--navbox-secondary-header-color: #DDD;
--navbox-tertiary-header-color: #EEE;
--navbox-section-color: #EEE;
}
body.wgl-theme-dark {
--navbox-background-color: #333;
--navbox-border-color: #444;
--navbox-header-color: #111;
--navbox-secondary-header-color: #181818;
--navbox-tertiary-header-color: #222;
--navbox-section-color: #222;
}
/* Card container */
.card-container {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 5px;
padding: 5px;
}
/* Individual card */
.card {
align-items: center;
border: 1px solid #ccc;
border-radius: 8px;
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
display: flex;
flex-direction: column;
width: 160px;
max-width: 100%;
text-align: center;
background-color: #fff;
overflow: hidden;
margin: 5px;
}
/* Card title */
.card-title {
font-size: 1.2em;
font-weight: bold;
padding: 5px;
background-color: #f4f4f4;
}
/* Card image container */
.card-image {
flex: 1; /* Take remaining space */
display: flex;
justify-content: center;
align-items: center;
padding: 5px; /* Add padding to keep distance from edges */
}
/* Card image */
.card-image img {
width: 64px;
height: 64px;
display: block;
}
/* Rarity categories */
.rarity-common {
background-color: #58bd7d;
color: #000;
}
.rarity-uncommon {
background-color: #3b71fe;
color: #fff;
}
.rarity-rare {
background-color: #9f73e6;
color: #fff;
}
.rarity-legendary {
background-color: #e85929;
color: #fff;
}
.rarity-mythic {
background-color: #e85929;
color: #fff;
}
/* Rarity section */
.card-rarity {
padding: 5px;
font-size: 1em;
font-weight: bold;
color: #fff;
width: 100%;
text-align: center;
text-transform: capitalize; /* Capitalize the first letter */
}
.table-container {
display: flex;
flex-wrap: wrap;
justify-content: center; /* Center the tables */
gap: 10px; /* Add space between the table items */
}
.table-item {
display: flex;
flex-direction: column;
align-items: center;
margin: 10px;
text-align: center; /* Center align the contents of each table item */
flex: 1 1 200px; /* Ensure the table items are responsive */
box-sizing: border-box; /* Ensure padding and border are included in the width */
}
.table-icon {
margin-bottom: 10px; /* Space between icon and table */
}
@media (max-width: 800px) {
.table-item {
flex: 1 1 100%;
margin-right: 0;
}
}
.infobox {
background-color: #85a4e0;
/* Container background color */
border: 3px solid #2f76ff;
width: 300px;
padding: 10px;
font-family: Arial, sans-serif;
border-radius: 20px;
border-top: 10px solid #2f76ff;
border-bottom: 10px solid #2f76ff;
/* Rounded corners for the infobox */
}
.infobox-title {
background-color: #2f76ff;
/* Match container background color */
color: #333;
font-size: 18px;
font-weight: bold;
text-align: center;
padding: 5px;
border-radius: 10px;
/* Rounded corners for the title */
}
.infobox-image {
text-align: center;
padding: 10px 0;
}
.infobox-content {
background-color: #85a4e0;
/* Match container background color */
padding: 5px;
border-radius: 10px;
/* Rounded corners for the content area */
}
.infobox-content .infobox-header {
background-color: #a1b7e0;
text-align: center;
font-weight: bold;
margin: 5px 0;
padding: 5px;
border-radius: 5px;
border: 1px solid #2f76ff;
}
.infobox-content .infobox-row {
display: flex;
justify-content: space-between;
padding: 2px 0;
border-radius: 10px;
/* Rounded corners for each row */
}
.infobox-content .infobox-label {
font-weight: bold;
width: 40%;
/* Fixed width for label */
}
.infobox-content .infobox-value {
text-align: right;
width: 60%;
/* Fixed width for value */
}
.infobox-content .infobox-row-gradient,
.infobox-content .infobox-row-white {
padding: 10px;
width: calc(50% - 12px);
/* Adjust width to be equal within the row */
box-sizing: border-box;
/* Ensure padding is included in the width */
}
.infobox-content .infobox-row-gradient {
background-color: #a1b7e0;
/* Parameters background color */
border-bottom: 5px solid #2f76ff;
border-left: none;
/* Remove left border */
border-right: none;
/* Remove right border */
border-radius: 10px;
}
.infobox-content .infobox-row-white {
border-bottom: 1px solid #2f76ff;
border-left: none;
/* Remove left border */
border-right: none;
/* Remove right border */
border-radius: 0px;
}
.infobox-content .infobox-icon-text {
display: flex;
align-items: center;
padding: 5px 0;
padding-bottom: 0px;
}
.infobox-content .infobox-icon-text .icon {
width: 24px;
height: 24px;
margin-right: 5px;
}