149 lines
2.6 KiB
Plaintext
149 lines
2.6 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: #3C4043;
|
|
font-size: 28rpx;
|
|
color: whitesmoke;
|
|
--td-primary-color: orange;
|
|
--td-bg-color: #3C4043;
|
|
--td-bg-color-fade: red;
|
|
--td-bg-color-block: #2B2B2B;
|
|
--td-color-block-check: #777777;
|
|
--td-dialog-title-color: none;
|
|
}
|
|
/* 记账类型颜色 */
|
|
.t-color-income {
|
|
color: red;
|
|
}
|
|
.t-color-expend {
|
|
color: green;
|
|
}
|
|
.t-color-transfer {
|
|
color: blue;
|
|
}
|
|
.t-color-repayment {
|
|
color: yellow;
|
|
}
|
|
/* 记账类型颜色 */
|
|
t-cell {
|
|
--td-cell-note-color: orange;
|
|
}
|
|
.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_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: 20rpx;
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
.bottom_box {
|
|
width: 100%;
|
|
position: absolute;
|
|
bottom:50rpx;
|
|
}
|
|
/* 占位置 */
|
|
.placeholder {
|
|
height: 168rpx;
|
|
}
|
|
/* 日历 */
|
|
.t-calendar__dates-item--centre {
|
|
--td-calendar-item-centre-color:lightsalmon;
|
|
}
|
|
/* 标签 */
|
|
.t-tabs__item {
|
|
--td-tab-item-color:none;
|
|
}
|
|
/* 对话框输入框 */
|
|
.t-dialog input {
|
|
color: whitesmoke;
|
|
--td-dialog-input-bg-color: #111111
|
|
}
|
|
.t-dialog__body {
|
|
--td-dialog-content-color: red;
|
|
}
|
|
/* 输入框 */
|
|
.t-input__control {
|
|
--td-input-default-text-color: orange;
|
|
}
|
|
.t-input__tips {
|
|
--td-input-default-tips-color: red
|
|
}
|
|
.t-input__wrap--suffix {
|
|
--td-input-suffix-text-color: whitesmoke
|
|
}
|
|
.t-input__label {
|
|
--td-input-label-text-color: whitesmoke
|
|
}
|
|
.t-input__placeholder {
|
|
--td-input-placeholder-text-color: #777777
|
|
}
|
|
/* 宫格 */
|
|
.t-grid-item__text {
|
|
color: whitesmoke !important;
|
|
}
|
|
/*文本域*/
|
|
.t-textarea__label {
|
|
--td-font-size-base: 32rpx;
|
|
--td-textarea-label-color:none
|
|
}
|
|
.t-textarea__wrapper-inner {
|
|
--td-textarea-text-color: orange
|
|
}
|
|
.t-textarea__placeholder {
|
|
--td-textarea-placeholder-color: #777777
|
|
}
|
|
.t-textarea__indicator {
|
|
--td-textarea-indicator-text-color : none
|
|
}
|
|
/* 下拉框 */
|
|
.t-collapse-panel__content {
|
|
--td-collapse-content-text-color: none;
|
|
--td-collapse-content-padding: 0;
|
|
}
|