forked from LeeJim/HowToCookOnMiniprogram
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.less
More file actions
93 lines (77 loc) · 1.27 KB
/
Copy pathapp.less
File metadata and controls
93 lines (77 loc) · 1.27 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
page {
width: 100%;
box-sizing: border-box;
background-color: #f6f6f6;
}
.container {
height: 100%;
box-sizing: border-box;
}
.list {
padding-left: 10rpx;
.item {
position: relative;
line-height: 40rpx;
padding-left: 28rpx;
&:before {
content: '';
position: absolute;
top: 15rpx;
left: 0;
display: block;
width: 12rpx;
height: 12rpx;
border-radius: 50%;
border: 4rpx solid #555;
box-sizing: border-box;
}
+ .item {
margin-top: 16rpx;
}
}
&--inner {
margin: 24rpx 0;
}
}
.text {
&--bold {
font-weight: bolder;
}
&--code {
background: #e6eefb;
color: #0052d9;
padding: 0 4px;
border-radius: 4px;
}
&--image {
font-family: 't';
color: #333;
text-decoration: underline;
&::before {
content: '\E074';
}
}
&--link {
font-family: 't';
text-decoration: underline;
&:before {
content: '\E07C';
}
}
&--page {
font-family: 't';
text-decoration: underline;
&:before {
content: '\E058';
}
}
&--quote {
display: block;
padding: 12rpx;
font-size: 28rpx;
color: #0052d9;
background-color: #e6eefb;
opacity: .7;
border-radius: 8rpx;
}
}