| 1 |
.wtotem_ready { |
| 2 |
background: #e5e5e5; } |
| 3 |
|
| 4 |
.wtotem_unit__first { |
| 5 |
display: flex; |
| 6 |
justify-content: space-between; } |
| 7 |
|
| 8 |
.wtotem_unit__wrapper { |
| 9 |
display: flex; |
| 10 |
justify-content: space-between; |
| 11 |
background: #fff; } |
| 12 |
|
| 13 |
.wtotem_unit__block { |
| 14 |
display: flex; |
| 15 |
justify-content: space-between; |
| 16 |
align-items: center; |
| 17 |
width: 100%; |
| 18 |
padding: 30px 30px; |
| 19 |
border-right: 1px solid #f3f5f6; } |
| 20 |
|
| 21 |
.wtotem_unit__contain { |
| 22 |
display: flex; |
| 23 |
justify-content: space-between; |
| 24 |
align-items: center; } |
| 25 |
|
| 26 |
.wtotem_unit__circle { |
| 27 |
margin-right: 16px; |
| 28 |
width: 45px; |
| 29 |
height: 45px; |
| 30 |
border-radius: 100px; |
| 31 |
display: flex; |
| 32 |
align-items: center; |
| 33 |
justify-content: center; } |
| 34 |
.wtotem_unit__circle_loading { |
| 35 |
background: #f3f5f6; } |
| 36 |
.wtotem_unit__circle_success { |
| 37 |
background: #4bc374; } |
| 38 |
.wtotem_unit__circle_error { |
| 39 |
background: #ee3f3f; |
| 40 |
position: relative; } |
| 41 |
.wtotem_unit__circle_error:before { |
| 42 |
content: ""; |
| 43 |
position: absolute; |
| 44 |
width: 19px; |
| 45 |
height: 3px; |
| 46 |
background: #fff; |
| 47 |
border-radius: 1px; |
| 48 |
display: block; |
| 49 |
transform: rotate(45deg); } |
| 50 |
.wtotem_unit__circle_error:after { |
| 51 |
content: ""; |
| 52 |
position: absolute; |
| 53 |
width: 19px; |
| 54 |
height: 3px; |
| 55 |
background: #fff; |
| 56 |
border-radius: 1px; |
| 57 |
display: block; |
| 58 |
transform: rotate(-45deg); } |
| 59 |
|
| 60 |
.wtotem_unit__img_spinner { |
| 61 |
animation: 1s linear 0s normal none infinite running rot; |
| 62 |
-webkit-animation: 1s linear 0s normal none infinite running rot; } |
| 63 |
|
| 64 |
@keyframes rot { |
| 65 |
0% { |
| 66 |
transform: rotate(0deg); } |
| 67 |
100% { |
| 68 |
transform: rotate(360deg); } } |
| 69 |
|
| 70 |
@-webkit-keyframes rot { |
| 71 |
0% { |
| 72 |
transform: rotate(0deg); } |
| 73 |
100% { |
| 74 |
transform: rotate(360deg); } } |
| 75 |
|
| 76 |
.wtotem_unit__expectation { |
| 77 |
font-size: 16px; |
| 78 |
font-weight: 500; } |
| 79 |
.wtotem_unit__expectation_loading { |
| 80 |
color: #7c8087; } |
| 81 |
.wtotem_unit__expectation_success { |
| 82 |
color: #bace3d; } |
| 83 |
.wtotem_unit__expectation_error { |
| 84 |
color: #d56c6a; } |
| 85 |
|
| 86 |
.wtotem_unit__repeat { |
| 87 |
color: #3d50df; |
| 88 |
cursor: pointer; } |
| 89 |
|
| 90 |
/*# sourceMappingURL=state.css.map */ |
| 91 |
|