Template:Infobox culture/styles.css: Difference between revisions
No edit summary Tag: Reverted |
No edit summary Tag: Reverted |
||
| Line 1: | Line 1: | ||
.infobox-culture { | /* Infobox table */ | ||
table.infobox-culture { | |||
float: right; | float: right; | ||
width: 320px; | width: 320px; | ||
margin: 0 0 1em 1em; | margin: 0 0 1em 1em; | ||
border: 1px solid #a2a9b1; | border: 1px solid #a2a9b1; | ||
background: #f8f9fa; | background: #f8f9fa; | ||
| Line 47: | Line 9: | ||
font-size: 0.95em; | font-size: 0.95em; | ||
line-height: 1.35; | line-height: 1.35; | ||
} | } | ||
/* Cell styling */ | |||
table.infobox-culture th, | table.infobox-culture th, | ||
table.infobox-culture td { | table.infobox-culture td { | ||
padding: 0.45em 0.55em; | padding: 0.45em 0.55em; | ||
vertical-align: top; | vertical-align: top; | ||
border-top: 1px solid #c8ccd1; | |||
} | } | ||
table.infobox-culture .infobox-title { | /* Title row */ | ||
table.infobox-culture th.infobox-title { | |||
background: #eaecf0; | background: #eaecf0; | ||
border-top: 0; | border-top: 0; | ||
| Line 67: | Line 28: | ||
} | } | ||
table.infobox-culture .infobox-image { | /* Image row */ | ||
table.infobox-culture td.infobox-image { | |||
text-align: center; | text-align: center; | ||
} | } | ||
/* Caption */ | |||
table.infobox-culture .infobox-caption { | table.infobox-culture .infobox-caption { | ||
margin-top: 0.35em; | margin-top: 0.35em; | ||
| Line 78: | Line 40: | ||
} | } | ||
/* | /* Mobile: stack and full width */ | ||
@media screen and (max-width: 720px) { | @media screen and (max-width: 720px) { | ||
table.infobox-culture { | table.infobox-culture { | ||
Revision as of 01:03, 27 January 2026
/* Infobox table */
table.infobox-culture {
float: right;
width: 320px;
margin: 0 0 1em 1em;
border: 1px solid #a2a9b1;
background: #f8f9fa;
border-collapse: collapse;
font-size: 0.95em;
line-height: 1.35;
}
/* Cell styling */
table.infobox-culture th,
table.infobox-culture td {
padding: 0.45em 0.55em;
vertical-align: top;
border-top: 1px solid #c8ccd1;
}
/* Title row */
table.infobox-culture th.infobox-title {
background: #eaecf0;
border-top: 0;
text-align: center;
font-weight: 700;
font-size: 1.1em;
}
/* Image row */
table.infobox-culture td.infobox-image {
text-align: center;
}
/* Caption */
table.infobox-culture .infobox-caption {
margin-top: 0.35em;
font-size: 0.9em;
color: #54595d;
}
/* Mobile: stack and full width */
@media screen and (max-width: 720px) {
table.infobox-culture {
float: none;
width: 100%;
margin: 0.5em 0 1em 0;
}
}