Mandragora Wiki

MediaWiki:Common.css: Difference between revisions

No edit summary
No edit summary
Line 4: Line 4:
     $('#catlinks').hide();
     $('#catlinks').hide();
});
});
/* Dark background and border for the metadata panel */
.mw-mmv-details {
    background-color: rgba(26, 26, 26, 0.95);
    color: #e0d3af;
    border-top: 2px solid #dab660;
    font-family: 'Cinzel', serif;
}
/* Title styling */
.mw-mmv-title {
    font-size: 1.5em;
    font-weight: bold;
    color: #dab660;
}
/* Description */
.mw-mmv-desc {
    color: #e0d3af;
    font-family: 'Cinzel', serif;
}
/* Links in the viewer */
.mw-mmv-details a {
    color: #dab660;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}
.mw-mmv-details a:hover {
    color: #ffdd88;
    text-shadow: 0 0 6px #f5e6b2;
}

Revision as of 12:12, 16 May 2025

.catlinks { display: none; }

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

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

/* Title styling */
.mw-mmv-title {
    font-size: 1.5em;
    font-weight: bold;
    color: #dab660;
}

/* Description */
.mw-mmv-desc {
    color: #e0d3af;
    font-family: 'Cinzel', serif;
}

/* Links in the viewer */
.mw-mmv-details a {
    color: #dab660;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

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