m Reduce paragraph box model
No edit summary
 
(4 intermediate revisions by the same user not shown)
Line 1: Line 1:
.infobox {
.infobox {
     border: 1px solid #a2a9b1;
     border: 1px solid var(--border-color-base,#a2a9b1);
     border-spacing: 3px;
     border-spacing: 3px;
     background-color: #f8f9fa;
     color: var(--color-base,#202122);
    color: black;
     margin: 0.5em 0 0.5em 1em;
     margin: 0.5em 0 0.5em 1em;
     padding: 0.2em;
     padding: 0.2em;
Line 22: Line 21:
.infobox .infobox-image {
.infobox .infobox-image {
     text-align: center;
     text-align: center;
}
.infobox .infobox-image:not(.game-tile) figure {
    margin: 0.8em auto;
}
}



Latest revision as of 09:31, 24 October 2025

.infobox {

   border: 1px solid var(--border-color-base,#a2a9b1);
   border-spacing: 3px;
   color: var(--color-base,#202122);
   margin: 0.5em 0 0.5em 1em;
   padding: 0.2em;
   float: right;
   clear: right;
   font-size: 88%;
   line-height: 1.5em;
   width: 22em;

}

.infobox caption {

   font-size: 125%;
   font-weight: bold;
   text-align: center;
   padding: 0.2em;

}

.infobox .infobox-image {

   text-align: center;

}

.infobox .infobox-image:not(.game-tile) figure {

   margin: 0.8em auto;

}

.infobox .infobox-label {

   text-align: left;
   vertical-align: top;

}

.infobox .infobox-data {

   text-align: left;
   vertical-align: top;

}

.infobox p {

   margin: 0;
   padding: 0;

}