107 lines
1.8 KiB
Plaintext
107 lines
1.8 KiB
Plaintext
/* case/pages/paintCanvas/paintCanvas.wxss *//* painting-2.wxss */
|
|
page {
|
|
background: rgba(153, 204, 255, 0.1);
|
|
}
|
|
.page {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
.failText {
|
|
margin-top: 200rpx;
|
|
text-align: center;
|
|
color: #888;
|
|
}
|
|
.colorBtn {
|
|
width: 50rpx;
|
|
height: 50rpx;
|
|
border-radius: 50%;
|
|
margin-right: 20rpx;
|
|
display: inline-block;
|
|
border: 6rpx solid #242424;
|
|
}
|
|
|
|
.colorBtn.select {
|
|
border: 6rpx solid #FFF;
|
|
}
|
|
|
|
.bars {
|
|
right: 1rem;
|
|
width: 400rpx;
|
|
padding: 20rpx;
|
|
bottom: 7.5rem;
|
|
color: #a88cf8;
|
|
font-size: 32rpx;
|
|
font-weight: bold;
|
|
position: absolute;
|
|
border-radius: 8rpx;
|
|
background-color: #242424;
|
|
box-shadow: 0 0 1.5rem 0 #FFFFFF20;
|
|
}
|
|
|
|
slider {
|
|
margin: 20rpx 20rpx 20rpx 0 !important;
|
|
}
|
|
|
|
.flex_column {
|
|
display: flex;
|
|
flex-direction: column !important;
|
|
}
|
|
|
|
.vertical_center {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.space {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
text-shadow: 2px 2px 1px #000000;
|
|
}
|
|
.bottom {
|
|
width: 750rpx;
|
|
height: 100rpx;
|
|
position: absolute;
|
|
bottom: 0;
|
|
display: flex;
|
|
justify-content: space-around;
|
|
}
|
|
|
|
.list-item {
|
|
width: 60rpx;
|
|
height: 60rpx;
|
|
margin: 20rpx 0;
|
|
border-radius: 50%;
|
|
}
|
|
|
|
.choose-box {
|
|
width: 750rpx;
|
|
position: absolute;
|
|
bottom: 100rpx;
|
|
}
|
|
|
|
.color-box {
|
|
width: 375rpx;
|
|
margin: 40rpx auto;
|
|
}
|
|
|
|
slider {
|
|
margin: 40rpx 60rpx;
|
|
}
|
|
|
|
.choose-box-flex {
|
|
display: flex;
|
|
justify-content: space-around;
|
|
width: 750rpx;
|
|
position: absolute;
|
|
bottom: 100rpx;
|
|
font-size: 32rpx;
|
|
color: #666;
|
|
text-align: center;
|
|
}
|
|
.choose-img {
|
|
width: 60rpx;
|
|
height: 60rpx;
|
|
margin: 20rpx;
|
|
border-radius: 50%;
|
|
background: white;
|
|
} |