Mandragora Wiki

MediaWiki:Common.css: Difference between revisions

No edit summary
No edit summary
Line 5: Line 5:
});
});


/* Dark background and border for the metadata panel */
/* Fix right bottom panel */
.mw-mmv-details {
.mw-mmv-panel {
     background-color: rgba(26, 26, 26, 0.95);
     background-color: rgba(26, 26, 26, 0.95) !important;
     color: #e0d3af;
     color: #e0d3af !important;
    border-top: 2px solid #dab660;
     font-family: 'Cinzel', serif !important;
     font-family: 'Cinzel', serif;
    border-top: 1px solid #dab660 !important;
}
}


/* Title styling */
/* Buttons like "More details" */
.mw-mmv-title {
.mw-mmv-panel .mw-ui-button {
     font-size: 1.5em;
    background-color: transparent !important;
    color: #dab660 !important;
     font-family: 'Cinzel', serif !important;
    border: 1px solid #dab660 !important;
    border-radius: 5px;
     font-weight: bold;
     font-weight: bold;
     color: #dab660;
     text-transform: uppercase;
    transition: background-color 0.3s ease, color 0.3s ease;
}
}


/* Description */
.mw-mmv-panel .mw-ui-button:hover {
.mw-mmv-desc {
    background-color: #dab660 !important;
     color: #e0d3af;
     color: #1a1a1a !important;
     font-family: 'Cinzel', serif;
     text-shadow: 0 0 6px #f5e6b2 !important;
}
}


/* Links in the viewer */
/* "View license" / "View author info" links */
.mw-mmv-details a {
.mw-mmv-license a,
     color: #dab660;
.mw-mmv-author a {
     text-decoration: none;
     color: #dab660 !important;
     font-weight: bold;
    font-family: 'Cinzel', serif !important;
    transition: color 0.3s ease, text-shadow 0.3s ease;
     text-decoration: none !important;
     font-weight: bold !important;
}
}


.mw-mmv-details a:hover {
.mw-mmv-license a:hover,
     color: #ffdd88;
.mw-mmv-author a:hover {
     text-shadow: 0 0 6px #f5e6b2;
     color: #ffdd88 !important;
     text-shadow: 0 0 6px #f5e6b2 !important;
}
}

Revision as of 12:14, 16 May 2025

.catlinks { display: none; }

$(function() {
    $('#catlinks').hide();
});

/* Fix right bottom panel */
.mw-mmv-panel {
    background-color: rgba(26, 26, 26, 0.95) !important;
    color: #e0d3af !important;
    font-family: 'Cinzel', serif !important;
    border-top: 1px solid #dab660 !important;
}

/* Buttons like "More details" */
.mw-mmv-panel .mw-ui-button {
    background-color: transparent !important;
    color: #dab660 !important;
    font-family: 'Cinzel', serif !important;
    border: 1px solid #dab660 !important;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.mw-mmv-panel .mw-ui-button:hover {
    background-color: #dab660 !important;
    color: #1a1a1a !important;
    text-shadow: 0 0 6px #f5e6b2 !important;
}

/* "View license" / "View author info" links */
.mw-mmv-license a,
.mw-mmv-author a {
    color: #dab660 !important;
    font-family: 'Cinzel', serif !important;
    text-decoration: none !important;
    font-weight: bold !important;
}

.mw-mmv-license a:hover,
.mw-mmv-author a:hover {
    color: #ffdd88 !important;
    text-shadow: 0 0 6px #f5e6b2 !important;
}