Jump to content

MediaWiki:Vector-light.css: Difference between revisions

No edit summary
No edit summary
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
/* 🌿 Light Theme - Header */
.mw-header {
    background-color: #B2C8B2; /* Sage Green */
    color: #4A4A4A; /* Dark Gray text */
    border-bottom: 3px solid #2E8B57; /* Sea Green underline */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    padding: 10px;
}
/* 🔗 Links */
.mw-header a {
    color: #006D77; /* Deep Teal */
    text-decoration: none;
}
.mw-header a:hover {
    color: #2E8B57; /* Sea Green */
    text-decoration: underline;
}
/* 🟡 Logo */
.mw-header .mw-logo-wordmark {
    font-family: 'Metamorphous', cursive;
    color: #2E8B57;
    font-size: 1.8em;
}
/* 🔄 Responsive */
@media (max-width: 768px) {
    .mw-header {
        flex-direction: column;
        align-items: flex-start;
    }
}
/* 🌤️ Light Theme */
/* 🌤️ Light Theme */
.mw-page-container {
.mw-page-container {
Line 72: Line 108:


/* 📊 Sidebar */
/* 📊 Sidebar */
#mw-panel {
.mw-panel {
     background-color: var(--color-sage-green);
     background-color: var(--color-sage-green);
     color: var(--color-dark-gray);
     color: var(--color-dark-gray);
Line 78: Line 114:
}
}


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


#mw-panel a:hover {
.mw-panel a:hover {
     color: var(--color-sea-green);
     color: var(--color-sea-green);
}
}
Line 284: Line 320:
         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 */
}
}