MediaWiki:Common.css: Difference between revisions
Myriad-admin (talk | contribs) Removing horizontal line |
Myriad-admin (talk | contribs) Hiding footer horizontal elements Tags: Mobile edit Mobile web edit |
||
Line 37: | Line 37: | ||
/* #region */ | /* #region */ | ||
footer#footer.footer { | /* Remove default MediaWiki footer links and spacing */ | ||
#footer ul, #footer .mw-footer-buttons { | |||
display: none !important; | |||
} | } | ||
#footer, footer#footer { | #footer, footer#footer { | ||
border-top: none !important; | border-top: none !important; | ||
padding-top: 0 !important; | |||
} | |||
footer#footer.footer { | |||
padding: 0; | |||
} | } | ||
Line 70: | Line 75: | ||
color: #202122; | color: #202122; | ||
margin-top: 2em; | margin-top: 2em; | ||
} | } | ||
Line 76: | Line 80: | ||
display: grid; | display: grid; | ||
grid-template: | grid-template: | ||
"links | "links nav" | ||
"eu-logo eu-text"; | |||
"eu-logo | gap: 1em 2em; | ||
gap: 1em; | |||
font-size: 1rem; | font-size: 1rem; | ||
justify-content: center; | justify-content: center; | ||
align-items: start; | |||
text-align: left; | |||
max-width: 1200px; | |||
margin: 0 auto; | |||
} | } | ||
#lcc-footer-content a { | #lcc-footer-content a { | ||
color: var(--myriad-blue); | color: var(--myriad-blue); | ||
margin-bottom: 0. | margin-bottom: 0.4em; | ||
transition: all 0.3s ease; | transition: all 0.3s ease; | ||
text-decoration: none; | text-decoration: none; | ||
display: inline-block; | |||
} | } | ||
Line 128: | Line 134: | ||
grid-area: eu-text; | grid-area: eu-text; | ||
display: flex; | display: flex; | ||
justify-content: center; | justify-content: start; | ||
align-items: center; | |||
} | } | ||
Line 134: | Line 141: | ||
font-size: 0.9em; | font-size: 0.9em; | ||
max-width: 800px; | max-width: 800px; | ||
margin: 0 | margin: 0; | ||
} | } | ||
/* Responsive layout | /* Responsive layout for mobile */ | ||
@media screen and ( | @media screen and (max-width: 768px) { | ||
#lcc-footer-content { | #lcc-footer-content { | ||
grid-template: | grid-template: | ||
"links nav | "links" | ||
"eu-logo | "nav" | ||
"eu-logo" | |||
"eu-text"; | |||
text-align: center; | |||
justify-items: center; | |||
} | } | ||
#lcc-footer-content .footer-eu-text { | #lcc-footer-content .footer-eu-text { | ||
justify-content: | justify-content: center; | ||
text-align: center; | |||
} | } | ||
#lcc-footer-content .footer-eu-text p { | #lcc-footer-content .footer-eu-text p { | ||
text-align: | text-align: center; | ||
} | } | ||
} | } | ||
/* #endregion */ | /* #endregion */ |
Revision as of 15:30, 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 */
/* Remove default MediaWiki footer links and spacing */
#footer ul, #footer .mw-footer-buttons {
display: none !important;
}
#footer, footer#footer {
border-top: none !important;
padding-top: 0 !important;
}
footer#footer.footer {
padding: 0;
}
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;
}
#lcc-footer-content {
display: grid;
grid-template:
"links nav"
"eu-logo eu-text";
gap: 1em 2em;
font-size: 1rem;
justify-content: center;
align-items: start;
text-align: left;
max-width: 1200px;
margin: 0 auto;
}
#lcc-footer-content a {
color: var(--myriad-blue);
margin-bottom: 0.4em;
transition: all 0.3s ease;
text-decoration: none;
display: inline-block;
}
#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: start;
align-items: center;
}
#lcc-footer-content .footer-eu-text p {
font-size: 0.9em;
max-width: 800px;
margin: 0;
}
/* Responsive layout for mobile */
@media screen and (max-width: 768px) {
#lcc-footer-content {
grid-template:
"links"
"nav"
"eu-logo"
"eu-text";
text-align: center;
justify-items: center;
}
#lcc-footer-content .footer-eu-text {
justify-content: center;
text-align: center;
}
#lcc-footer-content .footer-eu-text p {
text-align: center;
}
}
/* #endregion */