add docs stlying for blockquotes

This commit is contained in:
Luke Boswell 2023-06-11 10:35:23 +10:00
parent 65380b2cd5
commit 1f1e57a7a5
No known key found for this signature in database
GPG key ID: F6DB3C9DB47377B0

View file

@ -189,6 +189,24 @@ section {
margin: 72px 0px;
}
section blockquote {
font-style: italic;
position: relative;
margin-left: 0;
margin-right: 0;
}
section blockquote:before {
content: "";
position: absolute;
top: 0;
right: 0;
width: 2px;
height: 100%;
background-color: var(--gray);
}
section > *:last-child {
margin-bottom: 0;
}