Template:Infobox/styles.css: Difference between revisions

From Extremely Corporate Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
 
(9 intermediate revisions by the same user not shown)
Line 4: Line 4:


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


Line 22: Line 21:
     padding: 0.6em;
     padding: 0.6em;
     margin: 0;
     margin: 0;
    font-size: inherit !important;
}
}


Line 37: Line 37:
.ec-infobox-content {
.ec-infobox-content {
border-color: inherit;
border-color: inherit;
font-size: inherit;
font-size: inherit !important;
}
}


.ec-infobox-content > img, .ec-infobox-content > .image > img  {
.ec-infobox img {
     max-width: 385px;
     max-width: 385px;
     height: 100%;
     height: 100%;
Line 60: Line 60:
     /* Shrink infoboxes */
     /* Shrink infoboxes */
     .ec-infobox {
     .ec-infobox {
        max-width: 100px;
         font-size: 5pt;
         font-size: 5pt;
        min-width: 80px;
     }
     }
     .ec-infobox img {
     .ec-infobox img {
         width: 100%;
         max-width: 20vw;
        height: 100%;
     }
     }
}
}
Line 72: Line 69:
@media print {
@media print {
.ec-infobox {
.ec-infobox {
border-color: initial;
break-inside: avoid;
border-width: 1px;
border-color: black !important;
}
border-width: 2px;
border-radius: 0;
.ec-infobox-content {
margin: 5mm;
padding: 0.3em;
}
}
}
}

Latest revision as of 18:34, 14 March 2023

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

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

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

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

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

.ec-infobox-content > p {
    padding: 0.6em;
    margin: 0;
    font-size: inherit !important;
}

.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;
	font-size: inherit !important;
}

.ec-infobox img {
    max-width: 385px;
    height: 100%;
    
    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 {
        font-size: 5pt;
    }
    .ec-infobox img {
        max-width: 20vw;
    }
}

@media print {
	.ec-infobox {
		break-inside: avoid;
		border-color: black !important;
		border-width: 2px;
		border-radius: 0;
		margin: 5mm;
	}
}