MediaWiki: Tweeki.css: Difference between revisions

From LINKS Community Center
Jump to: navigation, search
Eschmidt (talk | contribs)
No edit summary
Eschmidt (talk | contribs)
No edit summary
Line 1: Line 1:
/* CSS placed here will affect users of the Tweeki skin */
/* CSS placed here will affect users of the Tweeki skin */


/* Main colours */
:root {
:root {
     --links-blue: #1980c3;
     --links-blue: #1980c3;
Line 25: Line 24:
#dct-profile .dct-meta {
#dct-profile .dct-meta {
     grid-area: meta;
     grid-area: meta;
    border-bottom: 2px solid var(--links-blue);
}
}



Revision as of 12:34, 10 May 2022

/* CSS placed here will affect users of the Tweeki skin */

:root {
    --links-blue: #1980c3;
    --links-cyan: #34b8b8;
    --links-grey: #415262;
    --links-orange: #ee7802;
}

#dct-profile {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-areas:
        "meta meta"
        "desc info"
        "func info"
        "more info";
}

#dct-profile > * {
    box-sizing: border-box;
}

#dct-profile .dct-meta {
    grid-area: meta;
    border-bottom: 2px solid var(--links-blue);
}

#dct-profile .dct-desc {
    grid-area: desc;
}

#dct-profile .dct-info {
    grid-area: info;
}

#dct-profile .dct-func {
    grid-area: func;
}

#dct-profile .dct-more {
    grid-area: more;
}