52 lines
876 B
Plaintext
52 lines
876 B
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: #3C4043;
|
|
font-size: 28rpx;
|
|
color: whitesmoke;
|
|
/*--td-primary-color: #3C4043;*/
|
|
--td-bg-color: #3C4043;
|
|
--td-bg-color-fade: red;
|
|
--td-bg-color-block: #2B2B2B;
|
|
--td-color-block-check: #777777;
|
|
}
|
|
/* 记账类型颜色 */
|
|
.t_income {
|
|
--td-cell-note-color: red
|
|
}
|
|
.t_expend {
|
|
--td-cell-note-color: green
|
|
}
|
|
/* 字体大小 */
|
|
.font_big {
|
|
font-size: 35rpx;
|
|
}
|
|
.font_small {
|
|
font-size: 25rpx;
|
|
}
|
|
/* 布局容器 */
|
|
.inline_box {
|
|
display: flex;
|
|
justify-content: flex-start;
|
|
}
|
|
.space_box {
|
|
padding: 20rpx;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
.padding_box {
|
|
padding: 0 20rpx;
|
|
}
|
|
/* 占位置 */
|
|
.placeholder {
|
|
height: 168rpx;
|
|
}
|