35 lines
592 B
Plaintext
35 lines
592 B
Plaintext
|
.animation-element-wrapper {
|
||
|
display: flex;
|
||
|
width: 100%;
|
||
|
padding-top: 150rpx;
|
||
|
padding-bottom: 150rpx;
|
||
|
justify-content: center;
|
||
|
overflow: hidden;
|
||
|
background-color: #ffffff;
|
||
|
}
|
||
|
.animation-element {
|
||
|
width: 200rpx;
|
||
|
height: 200rpx;
|
||
|
background-color: #1AAD19;
|
||
|
}
|
||
|
.animation-buttons {
|
||
|
padding: 30rpx 50rpx 10rpx;
|
||
|
width: 100%;
|
||
|
height: 360rpx;
|
||
|
box-sizing: border-box;
|
||
|
}
|
||
|
.animation-button {
|
||
|
float: left;
|
||
|
line-height: 2;
|
||
|
width: 300rpx;
|
||
|
margin: 15rpx 12rpx;
|
||
|
}
|
||
|
|
||
|
.animation-button-reset {
|
||
|
width: 620rpx;
|
||
|
}
|
||
|
|
||
|
.btn-row {
|
||
|
display: flex;
|
||
|
justify-content: space-between;
|
||
|
}
|