Predefinição:Quote/styles.css
Aspeto
.flexquote {
display: flex;
flex-direction: column;
background-color: #F1F1F1;
border-left: 3px solid #C7C7C7;
font-size: 100%;
margin: 1em 4em;
padding: .4em .8em;
}
.flexquote > .flex {
display: flex;
flex-direction: row;
}
.flexquote > .flex > .quote {
width: 100%;
}
.flexquote > .flex > .separator {
border-left: 1px solid #C7C7C7;
border-top: 1px solid #C7C7C7;
margin: .4em .8em;
}
.flexquote > .cite {
text-align: right;
}
@media all and (max-width: 600px) {
.flexquote > .flex {
flex-direction: column;
}
}
@media screen {
html.skin-theme-clientpref-night .flexquote {
background-color: transparent;
}
}
@media screen and (prefers-color-scheme: dark) {
html.skin-theme-clientpref-os .flexquote {
background-color: transparent;
}
}