-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathBlockquotes.css
More file actions
38 lines (33 loc) · 781 Bytes
/
Blockquotes.css
File metadata and controls
38 lines (33 loc) · 781 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/* BLOCKQUOTES */
.markdown-preview-view blockquote:before {
content: "❝";
font-size: 2.5em;
margin-right: .05em;
line-height: 0.1em;
vertical-align: -0.3em;
}
blockquote p {
color: var(--blockquote-border);
display: inline;
}
blockquote em{
color: var(--blockquote-border);
}
.cm-hmd-indent-in-quote {
padding-left: 0px;
}
.markdown-preview-view blockquote {
line-height: 1.75em;
color: var(--blockquote-border);
font-family: var(--default-font);
font-style: bold !important;
letter-spacing: 0px;
border: none;
border-left: 0.2rem solid var(--blockquote-border);
border-radius: 0px !important;
margin: 1.5rem 0rem 1.5rem 0rem;
padding-top: 1rem;
padding-left: 2rem;
padding-bottom: 1rem;
background-color: var(--blockquote-bg);
}