-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.wxss
More file actions
129 lines (106 loc) · 1.56 KB
/
app.wxss
File metadata and controls
129 lines (106 loc) · 1.56 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
/**app.wxss**/
page {
height: 100%;
}
/* 多个页面公用样式 */
page::-webkit-scrollbar, view::-webkit-scrollbar{
/*滚动条整体样式*/
width: 0px;
height: 0px;
}
.container {
width: 100%;
height: 100%;
}
.header-icon {
position: absolute;
top: 0;
right: 12rpx;
text-align: center;
width: 120rpx;
height: 90rpx;
line-height: 90rpx;
font-size: 28rpx;
z-index: 2;
color: #777;
}
.main_content, #main_content {
position: absolute;
top: 90rpx;
left: 0;
right: 0;
bottom: 0;
background-color: #efefef;
overflow-x: hidden;
overflow-y: scroll;
}
/*不换行*/
.no_wrap {
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
}
.text-hidden {
visibility: hidden;
}
.fd6 {
color: #ffd600;
}
.red_font {
color: #dc3528;
}
.green_font {
color: green;
}
.blue_font {
color: #1EA7E8;
}
.theme-font-gray{
color: #999;
}
.theme-bg{
background-color: #ffd600;
}
.white-bg{
background-color: #fff;
}
.spline-top{
border-top: 1px solid #efefef;
}
.spline-bottom{
border-bottom: 1px solid #efefef;
}
.theme-btn{
border-radius: 10rpx;
background: #ffd600;
color: #000;
text-align: center;
margin: 40rpx 12rpx;
height: 80rpx;
line-height: 80rpx;
font-size: 32rpx;
}
.pub-footer{
position: absolute;
left: 0;
right: 0;
bottom: 0;
line-height: 100rpx;
height: 100rpx;
background-color: #fff;
}
/* 弹性布局 */
.flex_row {
display: flex;
flex-flow: row nowrap;
}
.flex_column {
display: flex;
flex-flow: column nowrap;
}
.flr {
float: right;
}
.fll {
float: left;
}