(Created page with ".infobox { display: flex; } .infobox-title { font-size: 1.125rem; font-weight: bold; }") |
No edit summary |
||
(17 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
.infobox { | .infobox { | ||
display: flex; | display: flex; | ||
flex-direction: column; | |||
float: right; | |||
max-width: 300px; | |||
} | } | ||
.infobox- | .infobox-name { | ||
font-size: 1. | font-size: 1.5rem; | ||
font-weight: bold; | font-weight: bold; | ||
text-align: center; | |||
} | |||
.infobox-description { | |||
font-size: 0.85rem; | |||
font-style: italic; | |||
font-weight: 300; | |||
padding-bottom: 0.5rem; | |||
} | |||
.infobox-image { | |||
text-align: center; | |||
} | |||
.infobox-separator { | |||
background: #00d2ff; | |||
padding: 0.2rem 0.5rem; | |||
font-weight: bold; | |||
text-align: center; | |||
} | |||
.infobox table th { | |||
width: 105px; | |||
} | } |
Latest revision as of 13:35, 22 May 2023
.infobox {
display: flex;
flex-direction: column;
float: right;
max-width: 300px;
}
.infobox-name {
font-size: 1.5rem;
font-weight: bold;
text-align: center;
}
.infobox-description {
font-size: 0.85rem;
font-style: italic;
font-weight: 300;
padding-bottom: 0.5rem;
}
.infobox-image {
text-align: center;
}
.infobox-separator {
background: #00d2ff;
padding: 0.2rem 0.5rem;
font-weight: bold;
text-align: center;
}
.infobox table th {
width: 105px;
}