project init

This commit is contained in:
2023-01-09 10:20:17 +08:00
parent ac9b479805
commit fa1176f658
22 changed files with 800 additions and 39 deletions

View File

@@ -12,18 +12,37 @@ page {
background: #3C4043;
font-size: 28rpx;
color: whitesmoke;
/*--td-primary-color: #3C4043;*/
--td-primary-color: orange;
--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-color-income {
color: red;
}
.t_expend {
--td-cell-note-color: green
.t-color-expend {
color: green;
}
.t-color-transfer {
color: blue;
}
.t-color-repayment {
color: yellow;
}
/* 记账类型颜色 */
.t-cell-income {
--td-cell-note-color: red;
}
.t-cell-expend {
--td-cell-note-color: green;
}
.t-cell-transfer {
--td-cell-note-color: blue;
}
.t-cell-repayment {
--td-cell-note-color: yellow;
}
/* 字体大小 */
.font_big {
@@ -38,7 +57,7 @@ page {
justify-content: flex-start;
}
.space_box {
padding: 20rpx;
padding: 0 20rpx;
display: flex;
justify-content: space-between;
}