Difference between revisions of "MediaWiki:Common.less/portableinfobox.less"

From The Kingkiller Chronicle Wiki
Jump to navigation Jump to search
(I know what I'm doing.. sometimes..)
Line 25: Line 25:
 
     .pi-header,
 
     .pi-header,
 
     .pi-title {
 
     .pi-title {
         background: @infobox-header-color;
+
         background: @fountain-blue;
 
         color: @white;
 
         color: @white;
 
         font-size: 1.15em;
 
         font-size: 1.15em;

Revision as of 04:16, 25 December 2018

//

/* ==========================
       portable infoboxes    
   ========================== */

@infobox-background: @white;
@infobox-header-color: @jelly-bean;
@infobox-header-border: .5em solid @infobox-background;
@infobox-border: 1px solid @mystic;

.portable-infobox {
    background: @infobox-background;
    border: 1px solid @mystic;
    box-shadow: @box-shadow;

    .pi-data {
        border-bottom-width: 0px;
    }

    .pi-data-label {
        border-right: 1.5px solid @jelly-bean;
        font-family: @sans-serif-stack;
    }

    .pi-header,
    .pi-title {
        background: @fountain-blue;
        color: @white;
        font-size: 1.15em;
        text-align: center;
    }

    div.pi-item:not(.pi-header),
    div.pi-item:not(.pi-title) {
        padding: 0 10px;
    }


}