User:Vaileasys/sandbox 3

From PZwiki
< User:Vaileasys
Revision as of 07:25, 29 March 2024 by Vaileasys (talk | contribs) (quote & infobox css)
this is some text
— this is an author
/* Outer container */
.quote {
    display: flex;
    font-family: 'Georgia', 'Times New Roman', 'Times', serif;
}
/* Inner left quotation mark */
.quote .quote-mark {
    font-weight: bold;
    font-size: 4em;
    height: 1em;
}
/* Inner text container */
.quote .quote-text {
    margin: 0.5em;
    padding-left: 0.5em;
    border-left: 1px solid #000000;
    font-style: italic;
}
/* Author section */
.quote .quote-author {
    text-align: right;
}
/* increase infobox size when screen width is less than 720px */
@media screen and (max-width: 719px) {
    div.infobox {
        width: 100%;
    }
}