Skip to content

Commit 17969ed

Browse files
committed
Added BlockQuote CSS rules
Signed-off-by: Steve Scargall <[email protected]>
1 parent 2f08f69 commit 17969ed

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed

themes/memmachine/assets/css/styles.css

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2028,3 +2028,34 @@ footer p {
20282028
.blog-text table td strong {
20292029
color: #27B2E4; /* accent for important values */
20302030
}
2031+
2032+
/* ======================================
2033+
* Blockquotes
2034+
/* ====================================== */
2035+
2036+
.blog-content blockquote,
2037+
.blog-text blockquote {
2038+
position: relative;
2039+
margin: 2rem 0 2rem 0;
2040+
padding: 1.25rem 2rem;
2041+
background: #23293A;
2042+
border-left: 4px solid #27B2E4;
2043+
color: #C7D2FE;
2044+
font-style: italic;
2045+
box-shadow: 0 2px 8px rgba(27,26,39,0.035);
2046+
border-radius: 8px;
2047+
}
2048+
2049+
.blog-content blockquote::before,
2050+
.blog-text blockquote::before {
2051+
content: "“";
2052+
position: absolute;
2053+
left: 12px;
2054+
top: 8px;
2055+
font-size: 3.5rem;
2056+
color: #27B2E4;
2057+
opacity: 0.16;
2058+
font-family: serif;
2059+
line-height: 1;
2060+
pointer-events: none;
2061+
}

0 commit comments

Comments
 (0)