-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathapp.wxss
More file actions
88 lines (86 loc) · 1.58 KB
/
app.wxss
File metadata and controls
88 lines (86 loc) · 1.58 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
/**app.wxss**/
@import "style/colorui/main.wxss";
@import "style/colorui/icon.wxss";
@import "style/colorui/animation.wxss";
page {
font-family: Consolas, 'Courier New', monospace;
}
.dx-icon {
background-image: url("lib/svg/dx.svg")
}
.container {
height: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
padding: 200rpx 0;
box-sizing: border-box;
}
.cx-btn-primary {
width: 80px;
height: 20px;
line-height: 20px;
padding: 5px;
border: 1px solid white;
border-radius: 5px;
color: #fff;
text-align: center;
}
.my-col {
width: 100%;
height: 80px;
display: flex;
flex-direction: column;
justify-content: space-between;
}
.my-row {
width: 100%;
display: flex;
flex-direction: row;
justify-content: space-between;
}
.my-title {
font-size: 15px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.my-author {
font-size: 14px;
color: green;
}
.my-intro {
width: 100%;
overflow: hidden;
}
.loading {
width: 100%;
position: absolute;
top:0;
left: 0;
right: 0;
bottom: 0;
display: flex;
justify-content: space-around;
align-items: center;
vertical-align: center;
z-index: 100;
background: white;
transition: all 1s;
}
.cancel {
display: none;
}
.over-text {
overflow:hidden;
text-overflow:ellipsis;
white-space:nowrap;
}
.img {
background: linear-gradient(to right, #ececf0 8%, #d3d3d9 18%, #ececf0 33%);
}
.cu-load+.load-modal .png {
width: 150px;
height:150px;
}