49 lines
848 B
SCSS
49 lines
848 B
SCSS
.callout[data-callout~="wiki"],
|
|
.callout[data-callout~="infobox"] {
|
|
background: var(--light);
|
|
box-shadow: none;
|
|
margin: 0;
|
|
float: right;
|
|
border: 0;
|
|
width: 40%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: stretch;
|
|
align-content: center;
|
|
flex-wrap: wrap;
|
|
|
|
& > .callout-title,
|
|
& > * thead {
|
|
display: none;
|
|
}
|
|
& > * img,
|
|
& > p {
|
|
margin: 0;
|
|
}
|
|
|
|
& > * table,
|
|
& > .table-container {
|
|
margin: 0;
|
|
line-height: 2rem;
|
|
place-self: center;
|
|
}
|
|
|
|
& :is(h1, h2, h3, h4, h5, h6) {
|
|
color: var(--darkgray);
|
|
background-color: var(--gray);;
|
|
margin: 0;
|
|
font-size: 20px;
|
|
text-align: center;
|
|
|
|
& > .internal {
|
|
display: none;
|
|
}
|
|
}
|
|
}
|
|
@media (max-width: 830px) {
|
|
.callout[data-callout~="wiki"],
|
|
.callout[data-callout~="infobox"] {
|
|
float: unset;
|
|
width: 100%;
|
|
}
|
|
}
|