User:Vaileasys/sandbox 3

From PZwiki
< User:Vaileasys
Revision as of 07:39, 29 March 2024 by Vaileasys (talk | contribs) (added quote to screen size 719px to appear after the infobox instead of overlapping)
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;
}
@media screen and (max-width: 719px) {
    /* Template:Infobox */
    div.infobox {
        width: 100%;
    }

    /* Template:Quote */
    div.quote {
        clear: both;
    }
}