38 lines
665 B
Plaintext
Executable File
38 lines
665 B
Plaintext
Executable File
/* colorui/components/cu-custom.wxss */
|
|
.center {
|
|
padding: 5px 10rpx;
|
|
border-radius: 60rpx;
|
|
border: 1px solid #dddddd;
|
|
width: 180rpx;
|
|
height: 65rpx;
|
|
box-sizing: border-box;
|
|
line-height: 65rpx;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
margin-left: 20rpx;
|
|
}
|
|
|
|
.center image {
|
|
width: 45rpx;
|
|
height: 100%;
|
|
border-radius: 50%;
|
|
vertical-align: top;
|
|
}
|
|
|
|
.title-bar-bg {
|
|
background-color: #E6B980;
|
|
/* background-color: #ffffff; */
|
|
color: #fff;
|
|
/* color: #000000; */
|
|
}
|
|
|
|
.title-bar-bg-white {
|
|
background-color: #ffffff;
|
|
color: #000000;
|
|
}
|
|
|
|
.title-bar-bg-dark {
|
|
background-color: #000000;
|
|
color: #ffffff;
|
|
} |