Difference between revisions of "Template:Infobox/styles.css"
Template page
Views
Actions
Namespaces
Variants
Tools
Test>Alistair3149 (add image hover state) |
Mengwanzhou (talk | contribs) m (1 revision imported) |
(No difference)
|
Latest revision as of 01:40, 27 August 2021
.infobox {
width: 100%;
max-width: 400px;
margin-top: 0;
border-spacing: 0;
border-radius: 12px;
background: var(--background-color-framed);
font-size: 0.875rem;
text-align: left;
/* boxshadow-2 */
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.04), 0 3px 6px rgba(0, 0, 0, 0.0575);
/* In case if tooltips go out of boundary */
overflow: visible;
}
/* Table elements */
.infobox tbody {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.infobox tr {
margin-top: 10px;
padding: 0 10px;
display: flex;
flex-direction: column;
box-sizing: border-box;
}
.infobox th,
.infobox td {
padding: 0 10px;
}
/* Infobox column */
.infobox .infobox-nocol {
width: 100%;
flex-direction: row;
}
.infobox .infobox-nocol th {
width: 30%;
}
.infobox .infobox-nocol td {
width: 70%;
}
.infobox .infobox-col1 {
width: 100%;
}
.infobox .infobox-col2 {
width: 50%;
}
.infobox .infobox-col3 {
width: calc(100% / 3);
}
.infobox .infobox-col4 {
width: 25%;
}
.infobox-data {
min-width: 25%;
}
/* Infobox image */
.infobox .infobox-image {
margin-top: 0;
padding: 0;
border-radius: 12px 12px 0 0;
overflow: hidden;
}
.infobox-image td {
padding: 0;
}
.infobox-image--light .image {
background: #eaecf0;
}
.infobox-image--dark .image {
background: #2b2f36;
}
.infobox-image .image:hover img {
transform: scale( 1.1 );
}
.infobox-image .image img {
max-width: 100%;
display: block;
background: var(--background-color-quiet--hover);
}
/* Neutral background for all transprent SVG */
.infobox-image .image img[src$=".svg"] {
background: #eaecf0;
}
/* Infobox title */
.infobox .infobox-title {
margin-top: 20px;
margin-bottom: 5px;
width: 100%;
color: var(--color-base--emphasized);
font-size: 1.4rem;
line-height: 1.4;
}
/* Infobox header */
.infobox .infobox-header {
margin-top: 15px;
padding-top: 15px;
width: 100%;
color: var(--color-base--emphasized);
border-top: 1px solid;
border-color: var(--border-color-base);
font-size: 1rem;
}
/* Infobox value */
.infobox-data th {
color: var(--color-base--subtle);
font-weight: normal;
font-size: 0.8125rem;
letter-spacing: .75px;
}
.infobox-data td {
font-weight: bold;
}
.infobox-data ul,
.infobox-data ol {
margin-top: 0;
}
/* Infobox button */
.infobox .infobox-button-bar {
margin-top: 25px;
padding: 0;
width: 100%;
text-align: center;
}
.infobox-button-bar th {
padding: 0;
}
/* Collapsible toggle */
.infobox tr:first-of-type .mw-collapsible-toggle {
position: relative;
display: none;
float: none;
}
.infobox tr:first-of-type .mw-collapsible-toggle a.mw-collapsible-text {
position: absolute;
right: 0;
border-radius: 0 12px;
padding: 5px 15px;
background: var(--color-destructive);
color: white;
display: block;
}
.infobox tr:first-of-type .mw-collapsible-toggle .mw-collapsible-text:hover {
background: var(--color-destructive--hover);
}
.infobox tr:first-of-type .mw-collapsible-toggle .mw-collapsible-text:active {
background: var(--color-destructive--active);
}
.infobox tr:first-of-type .mw-collapsible-toggle-collapsed .mw-collapsible-text {
background: var(--color-primary);
}
.infobox tr:first-of-type .mw-collapsible-toggle-collapsed .mw-collapsible-text:hover {
background: var(--color-primary--hover);
}
.infobox tr:first-of-type .mw-collapsible-toggle-collapsed .mw-collapsible-text:active {
background: var(--color-primary--active);
}
.infobox tr:first-of-type .mw-collapsible-toggle:before,
.infobox tr:first-of-type .mw-collapsible-toggle:after {
content: none;
}
@media only screen and (max-width: 720px) {
.infobox {
margin-left: auto;
margin-right: auto;
}
.infobox tr:first-of-type .mw-collapsible-toggle {
display: block;
}
}