MediaWiki:Common.css: Difference between revisions

From Disaster Risk Gateway
Streamlined Footer
Tags: Mobile edit Mobile web edit
Changed all instances to drg
Tags: Mobile edit Mobile web edit
Line 87: Line 87:


/* === Custom EU Footer Section === */
/* === Custom EU Footer Section === */
#lcc-footer {
#drg-footer {
     width: 100%;
     width: 100%;
     padding: 2em 1em 1em;
     padding: 2em 1em 1em;
Line 98: Line 98:
}
}


#lcc-footer-content {
#drg-footer-content {
     display: flex;
     display: flex;
     flex-direction: column;
     flex-direction: column;
Line 108: Line 108:


/* === Split-column layout === */
/* === Split-column layout === */
.lcc-split-links {
.drg-split-links {
     display: grid;
     display: grid;
     grid-template-columns: 1fr 1fr;
     grid-template-columns: 1fr 1fr;
Line 116: Line 116:
}
}


.lcc-links-left,
.drg-links-left,
.lcc-links-right {
.drg-links-right {
     display: flex;
     display: flex;
     flex-direction: column;
     flex-direction: column;
Line 123: Line 123:
}
}


.lcc-links-left a,
.drg-links-left a,
.lcc-links-right a {
.drg-links-right a {
     color: var(--myriad-blue);
     color: var(--myriad-blue);
     text-decoration: none;
     text-decoration: none;
Line 130: Line 130:
}
}


.lcc-links-left a:hover,
.drg-links-left a:hover,
.lcc-links-right a:hover {
.drg-links-right a:hover {
     color: var(--myriad-dkblue);
     color: var(--myriad-dkblue);
     font-weight: bold;
     font-weight: bold;
Line 161: Line 161:
/* === Mobile layout === */
/* === Mobile layout === */
@media screen and (max-width: 768px) {
@media screen and (max-width: 768px) {
     .lcc-split-links {
     .drg-split-links {
         grid-template-columns: 1fr;
         grid-template-columns: 1fr;
         text-align: center;
         text-align: center;
Line 167: Line 167:
     }
     }


     .lcc-links-left,
     .drg-links-left,
     .lcc-links-right {
     .drg-links-right {
         align-items: center;
         align-items: center;
     }
     }

Revision as of 14:04, 23 May 2025

/* === General tweaks === */
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 colour palette === */
:root {
    --myriad-blue: #374CFF;
    --myriad-purple: #8836EA;
    --myriad-pink: #DB20D2;
    --myriad-dkblue: #000091;
    --myriad-yellow: #FFCE00;
    --myriad-green: #5AE09A;
}

/* === Clickable button styling === */
.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 base cleanup === */
#footer, footer#footer {
    border-top: none !important;
    padding-top: 0 !important;
    padding-bottom: 2em !important;
    background: white;
    color: #202122;
}

footer {
    width: 100%;
    font-size: 1.2rem;
    min-height: 150px;
}

footer a {
    color: var(--myriad-blue);
    text-decoration: none;
}

footer a:hover {
    color: var(--myriad-dkblue);
    font-weight: bold;
}

/* === Restore and style native footer sections === */
#footer-info,
#footer-icons {
    margin: 1em auto;
    text-align: center;
    font-size: 0.9rem;
    padding: 0;
    list-style: none;
}

#footer-places {
    display: none !important;
}

#footer-icons {
    display: flex !important;
    justify-content: center;
    gap: 1em;
    flex-wrap: wrap;
    margin-top: 1em;
}

#footer-icons img {
    max-height: 40px;
    opacity: 0.9;
}

/* === Custom EU Footer Section === */
#drg-footer {
    width: 100%;
    padding: 2em 1em 1em;
    font-size: 0.9rem;
    font-family: sans-serif;
    font-weight: 300;
    background: #ffffff;
    border-top: 1px solid #ccc;
    margin-top: 1em;
}

#drg-footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5em;
    max-width: 1200px;
    margin: 0 auto;
}

/* === Split-column layout === */
.drg-split-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    max-width: 800px;
    gap: 4em;
}

.drg-links-left,
.drg-links-right {
    display: flex;
    flex-direction: column;
    gap: 0.8em;
}

.drg-links-left a,
.drg-links-right a {
    color: var(--myriad-blue);
    text-decoration: none;
    transition: all 0.3s ease;
}

.drg-links-left a:hover,
.drg-links-right a:hover {
    color: var(--myriad-dkblue);
    font-weight: bold;
}

/* === EU logo and text === */
.footer-eu-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5em;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 1em auto 0;
    text-align: left;
}

.footer-eu-logo img {
    height: 2.5em;
    opacity: 0.9;
}

.footer-eu-text {
    font-size: 0.9em;
    max-width: 600px;
    line-height: 1.5;
}

/* === Mobile layout === */
@media screen and (max-width: 768px) {
    .drg-split-links {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2em;
    }

    .drg-links-left,
    .drg-links-right {
        align-items: center;
    }

    .footer-eu-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .footer-eu-text {
        text-align: center;
    }
}