colorize: add support for blockquote and pre
This commit is contained in:
parent
6859972112
commit
9542b30ab7
2 changed files with 10 additions and 0 deletions
|
@ -848,5 +848,9 @@ a, a:hover, a:active {
|
|||
.text-success {
|
||||
color: #75b82d; }
|
||||
|
||||
/* Clear-Typography overrides */
|
||||
mark {
|
||||
background-color: #fac694; }
|
||||
|
||||
blockquote, pre {
|
||||
border-color: #7951c0; }
|
||||
|
|
|
@ -196,6 +196,12 @@ a, a:hover, a:active {
|
|||
&-success { @include text-color($color-success); }
|
||||
}
|
||||
|
||||
/* Clear-Typography overrides */
|
||||
|
||||
mark {
|
||||
background-color: lighten($color-mark, 30%)
|
||||
}
|
||||
|
||||
blockquote, pre {
|
||||
border-color: $color-primary;
|
||||
}
|
||||
|
|
Reference in a new issue