-
Notifications
You must be signed in to change notification settings - Fork 17
/
app.wxss
89 lines (88 loc) · 1.17 KB
/
app.wxss
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
@import "/wxParse/wxParse.wxss";
.flex-row {
display: flex;
flex-direction: row;
flex-wrap: wrap;
}
.flex-col {
display: flex;
flex-direction: column;
flex-wrap: wrap;
}
.v-center{
align-items: center;
}
.h-center{
justify-content: center;
}
.space-around{
justify-content: space-around;
}
.space-between{
justify-content: space-between;
}
.flex-end{
justify-content: flex-end;
}
.input-placeholder{
color: #9b9b9b;
font-size:14px;
}
.md-img{
width: 300rpx;
height: 200rpx;
}
.sm-img{
width: 40rpx;
height: 40rpx;
}
.full-img{
width: 100%;
height: 100%;
}
.fs-16{
font-size: 16px;
}
.pull-right{
margin-left: auto;
}
.color-red{
color: #e4393c;
}
.color-gray{
color: gray;
}
.line-through{
text-decoration: line-through
}
.margin{
margin: 8rpx 10rpx
}
.numPicker{
border: 1px solid #999;
border-radius: 5px;
}
.numBtn{
height: 90%;
padding:0 10px;
}
.subBtn{
border-right: 1px solid #999;
}
.addBtn{
border-left: 1px solid #999;
}
.numInput{
width: 100rpx;
text-align: center;
}
.topLine{
border-top: 1px solid #E3E3E3;
width: 100%;
height: 0;
position: fixed;
top: 0;
}
.margin-right{
margin-right: 10rpx;
}