Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

MediaWiki:Common.css: Difference between revisions

MediaWiki interface page
No edit summary
No edit summary
Line 1: Line 1:
/* CSS placed here will be applied to all skins */
/* CSS placed here will be applied to all skins */


/* CSS placed here will be applied to all skins */
/* Base table styling */
.hover-table {
    font-family: 'Arial', sans-serif; /* Fallback; ideally use a custom font below */
}
/* Header styling */
.hover-table caption {
    font-size: 32px;
    font-weight: bold;
    text-shadow: 1px 1px 2px #8B6F35;
    padding-bottom: 15px;
}
/* Cell styling */
.hover-table td {
.hover-table td {
     transition: all 0.3s ease;
     transition: all 0.3s ease;
     padding: 5px; /* Optional: keeps some spacing */
     padding: 10px;
}
 
/* Text styling for links */
.hover-table td a {
    font-size: 18px;
    color: #E0C882;
    font-weight: 600;
    text-shadow: 0 0 3px rgba(139, 111, 53, 0.5);
    text-decoration: none; /* Removes underline for a cleaner look */
}
}


/* Hover effect for the whole cell */
.hover-table td:hover {
.hover-table td:hover {
     transform: scale(1.05); /* Scales the entire cell */
     transform: scale(1.05);
     box-shadow: 0 0 10px rgba(224, 200, 130, 0.7); /* Glow around the cell */
     box-shadow: 0 0 10px rgba(224, 200, 130, 0.7);
     border-radius: 5px; /* Rounds the cell corners */
     border-radius: 5px;
     background-color: rgba(224, 200, 130, 0.1); /* Optional: subtle background tint */
     background-color: rgba(224, 200, 130, 0.1);
}
}


/* Optional: Brighten text on hover */
.hover-table td:hover a {
.hover-table td:hover a {
     color: #E0C882; /* Optional: still changes link color on hover */
     color: #FFD700; /* Slightly brighter gold for emphasis */
    text-shadow: 0 0 5px rgba(139, 111, 53, 0.8);
}
}

Revision as of 21:06, 25 March 2025

/* CSS placed here will be applied to all skins */

/* CSS placed here will be applied to all skins */

/* Base table styling */
.hover-table {
    font-family: 'Arial', sans-serif; /* Fallback; ideally use a custom font below */
}

/* Header styling */
.hover-table caption {
    font-size: 32px;
    font-weight: bold;
    text-shadow: 1px 1px 2px #8B6F35;
    padding-bottom: 15px;
}

/* Cell styling */
.hover-table td {
    transition: all 0.3s ease;
    padding: 10px;
}

/* Text styling for links */
.hover-table td a {
    font-size: 18px;
    color: #E0C882;
    font-weight: 600;
    text-shadow: 0 0 3px rgba(139, 111, 53, 0.5);
    text-decoration: none; /* Removes underline for a cleaner look */
}

/* Hover effect for the whole cell */
.hover-table td:hover {
    transform: scale(1.05);
    box-shadow: 0 0 10px rgba(224, 200, 130, 0.7);
    border-radius: 5px;
    background-color: rgba(224, 200, 130, 0.1);
}

/* Optional: Brighten text on hover */
.hover-table td:hover a {
    color: #FFD700; /* Slightly brighter gold for emphasis */
    text-shadow: 0 0 5px rgba(139, 111, 53, 0.8);
}