Files
quinn-accounts/app.wxss
2023-02-11 00:39:10 +08:00

156 lines
2.7 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: orange;
}
.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: orange;
}
.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: 10rpx;
display: flex;
justify-content: center;
}
.bottom_box {
width: 100%;
position: absolute;
bottom:50rpx;
}
/* 占位置 */
.empty-view {
color: red;
margin-top: 200rpx;
}
.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 {
--td-textarea-disabled-text-color: orange;
}
.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;
}