88 lines
1.4 KiB
Plaintext
88 lines
1.4 KiB
Plaintext
/**app.wxss**/
|
|
.container {
|
|
height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding: 200rpx 0;
|
|
box-sizing: border-box;
|
|
}
|
|
page {
|
|
background: #f6f6f6;
|
|
--td-primary-color: orange;
|
|
/*--td-bg-color-block: #111;*/
|
|
}
|
|
/* 记账类型颜色 */
|
|
.t-color-INCOME {
|
|
color: red;
|
|
}
|
|
.t-color-EXPEND {
|
|
color: green;
|
|
}
|
|
.t-color-TRANSFER {
|
|
color: orange;
|
|
}
|
|
.t-color-REPAYMENT {
|
|
color: blue;
|
|
}
|
|
/* 字体大小 */
|
|
.font_large {
|
|
font-size: 50rpx;
|
|
}
|
|
.font_big {
|
|
font-size: 35rpx;
|
|
}
|
|
.font_small {
|
|
font-size: 25rpx;
|
|
}
|
|
/* 布局容器 */
|
|
.inline_box {
|
|
display: flex;
|
|
justify-content: flex-start;
|
|
}
|
|
.space_box_no_padding {
|
|
padding: 0 20rpx;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
.space_box {
|
|
padding: 20rpx;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
.padding_box {
|
|
padding: 0 20rpx;
|
|
}
|
|
.center_box {
|
|
width: 100%;
|
|
margin-top: 10rpx;
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
.bottom_box {
|
|
width: 100%;
|
|
position: absolute;
|
|
bottom:50rpx;
|
|
}
|
|
/* 占位置 */
|
|
.empty-view {
|
|
margin-top: 200rpx;
|
|
height: 1000rpx;
|
|
margin-bottom: 1000rpx;
|
|
}
|
|
.placeholder {
|
|
height: 168rpx;
|
|
}
|
|
.t-cell {
|
|
--td-cell-vertical-padding: 20rpx;
|
|
--td-cell-horizontal-padding: 20rpx;
|
|
--td-cell-font-size: 32rpx;
|
|
}
|
|
.t-input__tips {
|
|
--td-input-default-tips-color: red
|
|
}
|
|
.t-divider__content {
|
|
--td-divider-content-font-size:30rpx;
|
|
}
|