User:Merds/CSS/Infobox.css: Difference between revisions
no edit summary
No edit summary |
No edit summary |
||
(13 intermediate revisions by the same user not shown) | |||
Line 2:
/* variables */
:root {
--table-header: #
--table-body: #fff8ee;
--table-border: #e9d8cc;
}
Line 12 ⟶ 14:
float: right;
table-layout: fixed;
margin: 0.5em 0 1em 1em;
}
Line 28 ⟶ 31:
flex: 1 1 20%;
max-width: 20%;
color: white;
}
.infobox tbody {
border: 1px solid var(--table-
background: var(--table-body);
box-shadow: 0 0.25rem 0.35rem -0.25rem rgba(231, 215, 199, 0.5);
}▼
.infobox .infobox-header, .infobox .infobox-subheader {▼
background: var(--table-header);▼
}
.infobox .infobox-header {
▲ background: var(--table-header);
padding: 0.5em 0;
text-align: center;
color: white;
font-size: 1.15em;
font-weight: bold;
line-height: 1.4em;
}
.infobox .infobox-image {
text-align: center;
background: var(--body-main);
▲}
background: var(--table-subheader);
font-weight: bold;
text-align: center;
color: white;
}
Line 51 ⟶ 66:
}
.infobox tr
padding:
}
.infobox th:not(.infobox-header):not(.infobox-subheader):not(.infobox-nested) {
border-right: 2px solid var(--table-
text-align: right;
padding: 0.2em 0.5em;
}
|