You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
60 lines
928 B
60 lines
928 B
/* steps */
|
|
.uni-steps {
|
|
padding: 20upx 30upx;
|
|
flex-grow: 1;
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.uni-steps view {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
float: none;
|
|
}
|
|
|
|
.uni-steps .step {
|
|
width: 31.3%;
|
|
margin: 0 1%;
|
|
flex-wrap: nowrap;
|
|
}
|
|
|
|
.uni-steps .step-circle {
|
|
width: 50upx;
|
|
height: 50upx;
|
|
border-radius: 50upx;
|
|
background: #f1f1f3;
|
|
justify-content: center;
|
|
line-height: 50upx;
|
|
flex-shrink: 0;
|
|
margin-right: 15upx;
|
|
color: #666;
|
|
font-size: 28upx;
|
|
}
|
|
|
|
.uni-steps .step-content {
|
|
width: 100%;
|
|
height: 22upx;
|
|
border-bottom: 1px solid #f1f2f3;
|
|
}
|
|
|
|
.uni-steps .step-title {
|
|
line-height: 50upx;
|
|
height: 50upx;
|
|
background: #ffffff;
|
|
width: auto;
|
|
overflow: hidden;
|
|
padding-right: 8upx;
|
|
}
|
|
|
|
.uni-steps .current .step-circle {
|
|
background: #00b26a;
|
|
color: #ffffff;
|
|
}
|
|
|
|
.uni-steps .current .step-content {
|
|
border-color: #00b26a;
|
|
}
|
|
|
|
.uni-steps .current .step-title {
|
|
color: #00b26a;
|
|
}
|
|
|