[2025-05-17] Add CSS for blockquote and figcaption

This commit is contained in:
Andrew Conlin 2025-05-17 11:58:32 +01:00
parent cf0223e99e
commit fe9713d792

View file

@ -157,3 +157,30 @@ hr {
color: #32302F;
border-color: #32302F
}
blockquote {
/* background-color:#32302F; */
color: #A89984;
font-style: italic;
margin: 20px 0 30px;
padding-left: 20px;
border-left: 3px solid #A89984;
max-width:90%;
max-height:100%;
margin-left: auto;
margin-right: auto;
display: block;
}
figcaption {
color: #A89984;
text-align: center;
max-width:70%;
max-height:100%;
margin-left: auto;
margin-right: auto;
display: block;
font-size: 12px;
font-style: italic;
padding-top: 10px
}