_markdown.scss
1.03 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
.cu-markdown {
position: relative;
z-index: 1;
&.selectable {
cursor: auto;
user-select: text;
}
inline {
display: inline-block;
}
.list {
.list-item {
line-height: 1.8;
.list {
margin-left: 1.28571em;
.ui-title {
transform: scale(0.6);
&:before {
content: '\e716';
}
}
}
}
.list-item-p {
position: relative;
padding-left: 1.5em;
.list-item-t {
display: block;
width: 1.3em;
text-align: center;
position: absolute;
left: 0;
}
}
}
.md-table + .md-table {
margin-top: 30rpx;
}
}
.paragraph {
margin: 0 0 40rpx;
line-height: 1.8;
}
.blockquote {
@extend .paragraph;
padding: 20rpx 30rpx;
border-left-style: solid;
border-left-width: 10rpx;
border-color: var(--ui-Border);
background: none repeat scroll 0 0 rgba(102, 128, 153, 0.05);
.paragraph {
margin-bottom: 30rpx;
}
.paragraph:last-child {
margin-bottom: 0;
}
}