mirror of https://github.com/KaiserY/trpl-zh-cn
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
431 B
14 lines
431 B
/*
|
|
This is copied directly from the styles for blockquotes, because notes were
|
|
historically rendered *as* blockquotes. This keeps the presentation of them
|
|
identical while updating the presentation.
|
|
*/
|
|
.note {
|
|
margin: 20px 0;
|
|
padding: 0 20px;
|
|
color: var(--fg);
|
|
background-color: var(--quote-bg);
|
|
border-block-start: 0.1em solid var(--quote-border);
|
|
border-block-end: 0.1em solid var(--quote-border);
|
|
}
|