MediaWiki:Common.css: Difference between revisions
Myriad-admin (talk | contribs) Changed background colour to match Wiki background colour |
Myriad-admin (talk | contribs) Removing horizontal line |
||
Line 39: | Line 39: | ||
footer#footer.footer { | footer#footer.footer { | ||
padding: 0; | padding: 0; | ||
border-top: none !important; /* ✅ Removes top border */ | |||
} | |||
#footer, footer#footer { | |||
border-top: none !important; /* ✅ Catch-all override */ | |||
} | } | ||
Line 45: | Line 50: | ||
padding: 1em; | padding: 1em; | ||
font-size: 1.2rem; | font-size: 1.2rem; | ||
background: white; | background: white; | ||
color: rgba(0, 0, 0, 0.6); | color: rgba(0, 0, 0, 0.6); | ||
min-height: 250px; | min-height: 250px; | ||
} | } | ||
Line 62: | Line 67: | ||
font-family: sans-serif; | font-family: sans-serif; | ||
font-weight: 300; | font-weight: 300; | ||
background: #ffffff; | background: #ffffff; | ||
color: #202122; | color: #202122; | ||
margin-top: 2em; | margin-top: 2em; | ||
/* Removed visual border to blend with site */ | |||
} | } | ||
Revision as of 11:00, 21 May 2025
/* CSS placed here will be applied to all skins */
body.page-Help_Main_Page.action-view h1.firstHeading,
body.page-Main_Page.action-view h1.firstHeading {
display: none;
}
div#content a.external[href ^="https://"] {
background-image: none;
padding-right: 0;
}
/* MYRIAD colours */
:root {
--myriad-blue: #374CFF;
--myriad-purple: #8836EA;
--myriad-pink: #DB20D2;
--myriad-dkblue: #000091;
--myriad-yellow: #FFCE00;
--myriad-green: #5AE09A;
}
/* Clickable button */
.drg-button {
display: inline-block;
padding: .5em 1em;
text-align: center;
font-variant: small-caps;
border-radius: 7px;
background-color: var(--myriad-blue);
color: rgba(255, 255, 255, .8) !important;
transition: all 400ms;
text-decoration: none !important;
box-shadow: rgba(25, 128, 195, .3) 3px 3px 4px 0px;
}
/* FOOTER START */
/* #region */
footer#footer.footer {
padding: 0;
border-top: none !important; /* ✅ Removes top border */
}
#footer, footer#footer {
border-top: none !important; /* ✅ Catch-all override */
}
footer {
width: 100%;
padding: 1em;
font-size: 1.2rem;
background: white;
color: rgba(0, 0, 0, 0.6);
min-height: 250px;
}
footer a {
color: var(--myriad-blue);
text-decoration: none;
}
/* EU Footer Section */
#lcc-footer {
width: 100%;
padding: 2em;
font-size: 0.9rem;
font-family: sans-serif;
font-weight: 300;
background: #ffffff;
color: #202122;
margin-top: 2em;
/* Removed visual border to blend with site */
}
#lcc-footer-content {
display: grid;
grid-template:
"links links"
"nav legal"
"eu-logo eu-logo"
"eu-text eu-text";
gap: 1em;
font-size: 1rem;
text-align: center;
justify-content: center;
}
#lcc-footer-content a {
color: var(--myriad-blue);
margin-bottom: 0.5em;
transition: all 0.3s ease;
text-decoration: none;
}
#lcc-footer-content a:hover {
color: var(--myriad-dkblue);
font-weight: bold;
}
#lcc-footer-content .footer-links {
grid-area: links;
display: flex;
flex-direction: column;
}
#lcc-footer-content .footer-nav {
grid-area: nav;
display: flex;
flex-direction: column;
}
#lcc-footer-content .footer-legal {
grid-area: legal;
display: flex;
flex-direction: column;
}
#lcc-footer-content .footer-eu-logo {
grid-area: eu-logo;
}
#lcc-footer-content .footer-eu-logo img {
height: 2.5em;
opacity: 0.8;
}
#lcc-footer-content .footer-eu-text {
grid-area: eu-text;
display: flex;
justify-content: center;
}
#lcc-footer-content .footer-eu-text p {
font-size: 0.9em;
max-width: 800px;
margin: 0 auto;
}
/* Responsive layout on wider screens */
@media screen and (min-width: 992px) {
#lcc-footer-content {
width: 80%;
grid-template:
"links nav legal"
"eu-logo eu-text eu-text"
/ 1fr 1fr 1fr;
gap: 2em;
text-align: left;
}
#lcc-footer-content .footer-eu-text {
justify-content: flex-start;
}
#lcc-footer-content .footer-eu-text p {
text-align: left;
}
#lcc-footer-content .footer-legal {
text-align: right;
}
}
/* #endregion */