Mandragora Wiki

MediaWiki:Common.css: Difference between revisions

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


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


/* Buttons like "More details" */
/* Metadata and caption sections */
.mw-mmv-panel .mw-ui-button {
.mw-mmv-above-fold,
.mw-mmv-image-metadata {
    background: transparent !important;
    color: #e0d3af !important;
    font-family: 'Cinzel', serif !important;
    padding: 1em;
}
 
/* Title text */
.mw-mmv-title {
    color: #dab660 !important;
    font-size: 1.5em;
    font-weight: bold;
}
 
/* All links in bottom panel */
.mw-mmv-post-image a {
    color: #dab660 !important;
    font-weight: bold;
    text-decoration: none !important;
    transition: color 0.3s ease, text-shadow 0.3s ease;
    font-family: 'Cinzel', serif !important;
}
 
.mw-mmv-post-image a:hover {
    color: #ffdd88 !important;
    text-shadow: 0 0 6px #f5e6b2;
}
 
/* Buttons like "More details" or "Download" */
.mw-mmv-post-image .mw-ui-button {
     background-color: transparent !important;
     background-color: transparent !important;
     color: #dab660 !important;
     color: #dab660 !important;
    font-family: 'Cinzel', serif !important;
     border: 1px solid #dab660 !important;
     border: 1px solid #dab660 !important;
     border-radius: 5px;
     border-radius: 5px;
    font-family: 'Cinzel', serif !important;
     font-weight: bold;
     font-weight: bold;
     text-transform: uppercase;
     text-transform: uppercase;
Line 25: Line 55:
}
}


.mw-mmv-panel .mw-ui-button:hover {
.mw-mmv-post-image .mw-ui-button:hover {
     background-color: #dab660 !important;
     background-color: #dab660 !important;
     color: #1a1a1a !important;
     color: #1a1a1a !important;
     text-shadow: 0 0 6px #f5e6b2 !important;
     text-shadow: 0 0 6px #f5e6b2;
}
 
/* "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;
}
}

Revision as of 12:16, 16 May 2025

.catlinks { display: none; }

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

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

/* Metadata and caption sections */
.mw-mmv-above-fold,
.mw-mmv-image-metadata {
    background: transparent !important;
    color: #e0d3af !important;
    font-family: 'Cinzel', serif !important;
    padding: 1em;
}

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

/* All links in bottom panel */
.mw-mmv-post-image a {
    color: #dab660 !important;
    font-weight: bold;
    text-decoration: none !important;
    transition: color 0.3s ease, text-shadow 0.3s ease;
    font-family: 'Cinzel', serif !important;
}

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

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

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