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

From The Kingkiller Chronicle Wiki
Jump to navigation Jump to search
(Dear lord I'm a fucking mess)
(Fix some weir sizing issues on mobile)
Line 13: Line 13:
 
     border: 1px solid @mystic;
 
     border: 1px solid @mystic;
 
     box-shadow: @box-shadow;
 
     box-shadow: @box-shadow;
 +
    font-size: 0.875em;
  
 
     .pi-data {
 
     .pi-data {

Revision as of 04:22, 25 December 2018

// <pre>
/* ==========================
       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;
    font-size: 0.875em;

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

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

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

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


}