MediaWiki:Common.css: Difference between revisions

2,855 bytes added ,  Wednesday at 08:50
m
no edit summary
No edit summary
mNo edit summary
Tag: Manual revert
 
(34 intermediate revisions by 2 users not shown)
Line 1: Line 1:
/* CSS placed here will be applied to all skins */
/* CSS placed here will be applied to all skins. */
 
/* 🍄 Wiki Font (For toolbars and menus) 🍄 */
@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho+B1:wght@400;500;600;700;800&display=swap');
body {
  font-family: 'Shippori Mincho B1', serif;
  font-weight: 600;
}
#content { /* Keeps the main content area as default font. */
  font-family: sans-serif;
  font-weight: normal;
}
 
/* 🍄 Template:StoryChapter 🍄*/
.story-bold, /* Force bold on specified container. */
.story-bold *, /* Ensure nested <span>s, bold tags, etc, are also properly styled. */
.story-bold p {  /* Handles the issue where MediaWiki wraps transcluded content in <p> and prevent it from receiving other styles. */
  font-family: 'Shippori Mincho B1', serif !important;
  font-weight: 700 !important;
}
 
 
 
 
/* Main container style */
.mp-container {
    margin: 10px auto;
    display: table;
    width: 100%;
}
 
/* Table row style */
.mp-table-row {
    display: table-row;
}
 
/* Table cell style */
 
.mp-table-cell {
    display: table-cell;
    border: 3px solid transparent;
    border-image: linear-gradient(to right, transparent 0%, #6a1b9a 25%, #6a1b9a 75%, transparent 100%);
    border-image-slice: 1;
    width: 48%; /* Adjust the width as needed */
    box-sizing: border-box;
    margin: 0 auto;
}
 
/* Common style for section headings */
.mp-section-heading {
    border-radius: 12px;
    background: linear-gradient(45deg, #4b0082, #8b008b, #4b0082);
    color: white;
    border: 2px solid #632971;
    text-align: center;
    font-size: 24px;
    padding: 12px;
    line-height: 1.6;
    position: relative;
    letter-spacing: 1px;
    font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, serif;
}
 
/* Style for links within .mp-section-heading */
.mp-section-heading a {
    color: white; /* Make the link white */
    text-decoration: none; /* Remove underline if needed */
}
 
.mp-section-spacing {
        margin-bottom: 10px; /* Adjust the margin as needed */
    }
 
 
/* Category filter style */
.category-filter {
    background-color: transparent;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
    width: 100%; /* Adjust the width as needed */
    margin-left: auto;
    margin-right: auto;
}
 
.category-filter h2 {
    color: #4b0082;
}
 
.category-filter ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 5px !important;
}
 
.category-filter li {
    margin: 0 10px; /* Equal spacing on both sides */
}
 
.category-link {
    display: inline-block;
    padding: 8px 12px;
    border-radius: 5px;
    color: #fff;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s;
}
 
.category-link-characters,
.category-link-events,
.category-link-village,
.category-link-drakenberg,
.category-link-miscellanea {
    background-color: #4b0082;
    flex: 1; /* Equal width for all buttons */
}
 
.category-link:hover {
    background-color: #632971;
}




Line 273: Line 398:
}
}


<!--- Aptitude testing area --->


.aptitude-table {
.spoiler {
    width: 100%;
     background-color: #000; /* Change this to the desired background color */
     background-color: #f0f0f0;
     color: #000; /* Change this to the desired text color */
     border: 1px solid #ccc;
     cursor: pointer;
     border-radius: 5px;
     padding: 5px; /* Adjust the padding as needed */
     padding: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
}


.aptitude-box {
.spoiler:hover {
    border: 2px solid #007BFF;
     background-color: transparent; /* Reveals the content on hover */
    border-radius: 8px;
     color: inherit;
    padding: 15px;
     background-color: #007BFF;
     color: white;
    font-weight: bold;
    margin-right: 20px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}
}


.aptitude-fellow-icons {
ol li {
     font-weight: bold;
     margin-left: -0.5em;
    font-size: 20px;
}
}
contributors, delete_pages, Interface administrators
4,701

edits