| 1 |
@import "variables.scss"; |
| 2 |
|
| 3 |
.wtotem { |
| 4 |
&_ready { |
| 5 |
background: #e5e5e5; |
| 6 |
} |
| 7 |
|
| 8 |
&_unit { |
| 9 |
} |
| 10 |
} |
| 11 |
.wtotem_unit { |
| 12 |
&__first { |
| 13 |
display: flex; |
| 14 |
justify-content: space-between; |
| 15 |
} |
| 16 |
|
| 17 |
&__wrapper { |
| 18 |
display: flex; |
| 19 |
justify-content: space-between; |
| 20 |
background: #fff; |
| 21 |
} |
| 22 |
|
| 23 |
&__block { |
| 24 |
display: flex; |
| 25 |
justify-content: space-between; |
| 26 |
align-items: center; |
| 27 |
width: 100%; |
| 28 |
padding: 30px 30px; |
| 29 |
border-right: 1px solid #f3f5f6; |
| 30 |
} |
| 31 |
|
| 32 |
&__line { |
| 33 |
} |
| 34 |
|
| 35 |
&__contain { |
| 36 |
display: flex; |
| 37 |
justify-content: space-between; |
| 38 |
align-items: center; |
| 39 |
} |
| 40 |
|
| 41 |
&__circle { |
| 42 |
margin-right: 16px; |
| 43 |
width: 45px; |
| 44 |
height: 45px; |
| 45 |
border-radius: 100px; |
| 46 |
display: flex; |
| 47 |
align-items: center; |
| 48 |
justify-content: center; |
| 49 |
|
| 50 |
&_loading { |
| 51 |
background: #f3f5f6; |
| 52 |
} |
| 53 |
|
| 54 |
&_success { |
| 55 |
background: #4bc374; |
| 56 |
} |
| 57 |
|
| 58 |
&_error { |
| 59 |
background: #ee3f3f; |
| 60 |
position: relative; |
| 61 |
&:before { |
| 62 |
content: ""; |
| 63 |
position: absolute; |
| 64 |
width: 19px; |
| 65 |
height: 3px; |
| 66 |
background: #fff; |
| 67 |
border-radius: 1px; |
| 68 |
display: block; |
| 69 |
transform: rotate(45deg); |
| 70 |
} |
| 71 |
&:after { |
| 72 |
content: ""; |
| 73 |
position: absolute; |
| 74 |
width: 19px; |
| 75 |
height: 3px; |
| 76 |
background: #fff; |
| 77 |
border-radius: 1px; |
| 78 |
display: block; |
| 79 |
transform: rotate(-45deg); |
| 80 |
} |
| 81 |
} |
| 82 |
} |
| 83 |
|
| 84 |
&__img { |
| 85 |
&_spinner { |
| 86 |
animation: 1s linear 0s normal none infinite running rot; |
| 87 |
-webkit-animation: 1s linear 0s normal none infinite running rot; |
| 88 |
|
| 89 |
@keyframes rot { |
| 90 |
0% { |
| 91 |
transform: rotate(0deg); |
| 92 |
} |
| 93 |
100% { |
| 94 |
transform: rotate(360deg); |
| 95 |
} |
| 96 |
} |
| 97 |
@-webkit-keyframes rot { |
| 98 |
0% { |
| 99 |
transform: rotate(0deg); |
| 100 |
} |
| 101 |
100% { |
| 102 |
transform: rotate(360deg); |
| 103 |
} |
| 104 |
} |
| 105 |
} |
| 106 |
} |
| 107 |
|
| 108 |
&__expectation { |
| 109 |
font-size: 16px; |
| 110 |
font-weight: 500; |
| 111 |
&_loading { |
| 112 |
color: #7c8087; |
| 113 |
} |
| 114 |
|
| 115 |
&_success { |
| 116 |
color: #bace3d; |
| 117 |
} |
| 118 |
|
| 119 |
&_error { |
| 120 |
color: #d56c6a; |
| 121 |
} |
| 122 |
} |
| 123 |
|
| 124 |
&__repeat { |
| 125 |
color: $c-blue; |
| 126 |
cursor: pointer; |
| 127 |
} |
| 128 |
} |
| 129 |
.section-header-mb { |
| 130 |
} |
| 131 |
|
| 132 |
.title { |
| 133 |
} |
| 134 |
|