Template:Infobox/styles.css: Difference between revisions

From Extremely Corporate Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
.infobox {
.ec-infobox {
     clear: both;
     clear: both;
     float: right;
     float: right;
Line 15: Line 15:
}
}


.infobox {
.ec-infobox {
     font-size: 8pt;
     font-size: 8pt;
}
}


.infobox-content > p {
.ec-infobox-content > p {
     padding: 0.6em;
     padding: 0.6em;
     margin: 0;
     margin: 0;
}
}


.infobox-title {
.ec-infobox-title {
     background-color: #eee;
     background-color: #eee;


Line 35: Line 35:
}
}


.infobox-content {
.ec-infobox-content {
border-color: inherit;
border-color: inherit;
}
}


.infobox-content > img, .infobox-content > .image > img  {
.ec-infobox-content > img, .ec-infobox-content > .image > img  {
     max-width: 385px;
     max-width: 385px;


Line 47: Line 47:
}
}


.infobox-content > .bordered-table {
.ec-infobox-content > .bordered-table {
     width: calc(100% + 4px);
     width: calc(100% + 4px);


Line 58: Line 58:
@media only screen and (max-width: 740px) {
@media only screen and (max-width: 740px) {
     /* Shrink infoboxes */
     /* Shrink infoboxes */
     .infobox {
     .ec-infobox {
         max-width: 100px;
         max-width: 100px;
    }
    .infobox {
         font-size: 5pt;
         font-size: 5pt;
         min-width: 80px;
         min-width: 80px;
     }
     }
     .infobox img {
     .ec-infobox img {
         width: 100%;
         width: 100%;
         height: 100%;
         height: 100%;
     }
     }
}
}

Revision as of 12:59, 23 July 2022

.ec-infobox {
    clear: both;
    float: right;

    max-width: 400px;
    width: -moz-min-content;
    width: min-content;

    border: 2px solid;
    border-color: #ccc;
    border-radius: 2px;

    margin-bottom: 10px;
    margin-left: 10px;
}

.ec-infobox {
    font-size: 8pt;
}

.ec-infobox-content > p {
    padding: 0.6em;
    margin: 0;
}

.ec-infobox-title {
    background-color: #eee;

    font-weight: bold;
    text-align: center;

    border-bottom: 2px solid;
    border-color: inherit;
    padding: 1px;
}

.ec-infobox-content {
	border-color: inherit;
}

.ec-infobox-content > img, .ec-infobox-content > .image > img  {
    max-width: 385px;


    display: inline-block;
    object-fit: contain;
}

.ec-infobox-content > .bordered-table {
    width: calc(100% + 4px);

    margin: -2px;
    border: none;
}

/* Responsive stuff */

@media only screen and (max-width: 740px) {
    /* Shrink infoboxes */
    .ec-infobox {
        max-width: 100px;
        font-size: 5pt;
        min-width: 80px;
    }
    .ec-infobox img {
        width: 100%;
        height: 100%;
    }
}