Jump to content

MediaWiki:Vector-medium.css: Difference between revisions

 
(6 intermediate revisions by the same user not shown)
Line 1: Line 1:
/* 🌊 Medium Theme - Header */
.vector-header-container .mw-header, .vector-header-container .vector-sticky-header {
    background-color: #536872; /* Slate */
    color: #D8D8D8; /* Dove Gray text */
    border-bottom: 3px solid #006D77; /* Deep Teal underline */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
    padding: 10px;
}
/* 🔗 Links */
.mw-header a {
    color: #007BA7; /* Cerulean */
    text-decoration: none;
}
.mw-header a:hover {
    color: #006D77; /* Deep Teal */
    text-decoration: underline;
}
/* 🟡 Logo */
.mw-header .mw-logo-wordmark {
    font-family: 'Metamorphous', cursive;
    color: #007BA7;
    font-size: 1.8em;
}
/* 🔄 Responsive */
@media (max-width: 768px) {
    .mw-header {
        flex-direction: column;
        align-items: flex-start;
    }
}
/* 🌤️ Medium Theme */
/* 🌤️ Medium Theme */
.mw-page-container {
.mw-page-container {
Line 68: Line 104:


/* 📊 Sidebar */
/* 📊 Sidebar */
#mw-panel {
.mw-panel {
     background-color: var(--color-medium-slate);
     background-color: var(--color-medium-slate);
     color: var(--color-dove-gray);
     color: var(--color-dove-gray);
}
}


#mw-panel a {
.mw-panel a {
     color: var(--color-dark-teal);
     color: var(--color-dark-teal);
}
}


#mw-panel a:hover {
.mw-panel a:hover {
     color: var(--color-cerulean);
     color: var(--color-cerulean);
}
}
Line 277: Line 313:
         flex-direction: column;
         flex-direction: column;
     }
     }
}
nav {
    display: block; /* Ensure it behaves as a block element */
    /*margin: 10px 0;  Add vertical spacing */
    padding-left: 10px;
    margin-top: 10px; /* Add vertical spacing */
    border-radius: 5px; /* Optional: rounded corners */
}
/* Adjust navigation links inside nav */
nav a {
    margin-right: 10px; /* Space between links */
    text-decoration: none; /* Remove underlines */
    color: #007BFF; /* Link color */
}
nav a:hover {
    text-decoration: underline; /* Hover effect */
}
}