| 1 |
.wtotem_item { |
| 2 |
margin-bottom: 23px; } |
| 3 |
|
| 4 |
.wtotem_holder { |
| 5 |
display: flex; |
| 6 |
justify-content: space-between; } |
| 7 |
.wtotem_holder__content { |
| 8 |
width: 70%; } |
| 9 |
.wtotem_holder__sidebar { |
| 10 |
width: 27.8431372549%; } |
| 11 |
|
| 12 |
.wtotem_option { |
| 13 |
margin-bottom: 12px; |
| 14 |
padding: 28px 24px 24px 24px; |
| 15 |
display: flex; |
| 16 |
align-items: center; |
| 17 |
justify-content: space-between; |
| 18 |
width: 100%; } |
| 19 |
.wtotem_option:last-child { |
| 20 |
margin-bottom: 0; } |
| 21 |
.wtotem_option__title { |
| 22 |
margin-bottom: 7px; |
| 23 |
color: #1d293f; |
| 24 |
font-size: 14px; |
| 25 |
font-weight: 500; } |
| 26 |
.wtotem_option__text { |
| 27 |
width: 495px; |
| 28 |
font-size: 12px; |
| 29 |
color: #5e6977; |
| 30 |
line-height: 16px; } |
| 31 |
|
| 32 |
.wtotem_control { |
| 33 |
padding: 16px 22px 24px 22px; } |
| 34 |
.wtotem_control__title { |
| 35 |
color: #1d293f; |
| 36 |
font-size: 14px; |
| 37 |
font-weight: 500; |
| 38 |
margin-bottom: 18px; } |
| 39 |
.wtotem_control__block { |
| 40 |
padding: 12px 8px; |
| 41 |
display: flex; |
| 42 |
align-items: center; |
| 43 |
background: #f3f5f6; |
| 44 |
border-radius: 5px; |
| 45 |
margin-bottom: 12px; |
| 46 |
width: 100%; } |
| 47 |
.wtotem_control__block_switch { |
| 48 |
justify-content: space-between; |
| 49 |
align-items: center; } |
| 50 |
.wtotem_control__circle { |
| 51 |
margin-right: 4px; |
| 52 |
width: 16px; |
| 53 |
height: 16px; |
| 54 |
border-radius: 100px; |
| 55 |
display: flex; |
| 56 |
align-items: center; |
| 57 |
justify-content: center; |
| 58 |
background: #4bc374; } |
| 59 |
.wtotem_control__circle img { |
| 60 |
width: 7px; |
| 61 |
height: 7px; } |
| 62 |
.wtotem_control__name { |
| 63 |
color: #5e6977; } |
| 64 |
.wtotem_control__trash { |
| 65 |
width: 15px; |
| 66 |
height: 15px; |
| 67 |
background: url("../img/trash.svg") no-repeat center center/cover; |
| 68 |
margin-left: auto; |
| 69 |
cursor: pointer; } |
| 70 |
.wtotem_control__btn { |
| 71 |
color: #fff; |
| 72 |
display: block; |
| 73 |
width: 100%; |
| 74 |
height: 42px; |
| 75 |
display: flex; |
| 76 |
align-items: center; |
| 77 |
justify-content: center; |
| 78 |
background: #4bc374; |
| 79 |
border-radius: 5px; |
| 80 |
transition: all 0.2s ease-in-out; |
| 81 |
border: none; |
| 82 |
cursor: pointer; } |
| 83 |
.wtotem_control__btn:hover { |
| 84 |
transition: all 0.2s ease-in-out; |
| 85 |
background: #f3f5f6; |
| 86 |
color: #5e6977; } |
| 87 |
.wtotem_control__label { |
| 88 |
position: relative; |
| 89 |
width: 41px; |
| 90 |
height: 23px; |
| 91 |
border-radius: 100px; |
| 92 |
background: #1f2323; |
| 93 |
padding: 4px 7px; |
| 94 |
display: flex; |
| 95 |
justify-content: space-between; |
| 96 |
align-items: center; |
| 97 |
cursor: pointer; } |
| 98 |
.wtotem_control__label:before, .wtotem_control__label:after { |
| 99 |
content: ""; |
| 100 |
display: block; |
| 101 |
position: relative; |
| 102 |
z-index: 2; } |
| 103 |
.wtotem_control__label:before { |
| 104 |
width: 8px; |
| 105 |
height: 8px; |
| 106 |
background: url("../img/checkbox-sun.svg") no-repeat center center/cover; } |
| 107 |
.wtotem_control__label:after { |
| 108 |
width: 6px; |
| 109 |
height: 6px; |
| 110 |
background: url("../img/checkbox-moon.svg") no-repeat center center/cover; } |
| 111 |
.wtotem_control__switched-circle { |
| 112 |
position: absolute; |
| 113 |
left: 4px; |
| 114 |
width: 15px; |
| 115 |
height: 15px; |
| 116 |
background: #fff; |
| 117 |
border-radius: 100px; |
| 118 |
display: block; |
| 119 |
z-index: 1; |
| 120 |
transition: all 0.3s ease-in-out; } |
| 121 |
.wtotem_control__input { |
| 122 |
display: none; } |
| 123 |
.wtotem_control__input:checked + label { |
| 124 |
background: #fff; } |
| 125 |
.wtotem_control__input:checked + label span { |
| 126 |
left: 23px; |
| 127 |
background: #3d50df; } |
| 128 |
|
| 129 |
.onoff__input { |
| 130 |
display: none; } |
| 131 |
|
| 132 |
.onoff__label { |
| 133 |
position: relative; |
| 134 |
display: flex; |
| 135 |
align-items: center; |
| 136 |
width: 43px; |
| 137 |
height: 23px; |
| 138 |
border-radius: 100px; |
| 139 |
padding: 4px; |
| 140 |
background: #f4f4f4; |
| 141 |
overflow: hidden; |
| 142 |
cursor: pointer; } |
| 143 |
.onoff__label:before, .onoff__label:after { |
| 144 |
position: absolute; |
| 145 |
font-weight: 500; |
| 146 |
font-size: 9px; |
| 147 |
transition: all 0.3s ease-in-out; } |
| 148 |
.onoff__label:before { |
| 149 |
content: "ON"; |
| 150 |
color: #3d50df; |
| 151 |
left: -100%; } |
| 152 |
.onoff__label:after { |
| 153 |
content: "OFF"; |
| 154 |
color: #979797; |
| 155 |
right: 4px; } |
| 156 |
|
| 157 |
.onoff__circle { |
| 158 |
position: absolute; |
| 159 |
left: 4px; |
| 160 |
width: 15px; |
| 161 |
height: 15px; |
| 162 |
border-radius: 100px; |
| 163 |
background: #c4c4c4; |
| 164 |
transition: all 0.3s ease-in-out; } |
| 165 |
|
| 166 |
.onoff__input:checked + label .onoff__circle { |
| 167 |
background: #3d50df; |
| 168 |
left: 22px; } |
| 169 |
|
| 170 |
.onoff__input:checked + label:before { |
| 171 |
left: 4px; } |
| 172 |
|
| 173 |
.onoff__input:checked + label:after { |
| 174 |
right: -100%; } |
| 175 |
|
| 176 |
/* 992-1100px lg Large */ |
| 177 |
@media screen and (max-width: 1100px) { |
| 178 |
.wtotem_option__text { |
| 179 |
width: 95%; } } |
| 180 |
|
| 181 |
/* 768-992px md Medium */ |
| 182 |
@media screen and (max-width: 992px) { |
| 183 |
.wtotem_holder { |
| 184 |
flex-direction: column; } |
| 185 |
.wtotem_holder__content { |
| 186 |
width: 100%; |
| 187 |
margin-bottom: 30px; } |
| 188 |
.wtotem_holder__sidebar { |
| 189 |
width: 100%; } } |
| 190 |
|
| 191 |
/* 576-768px sm Small */ |
| 192 |
/* 375-576px Extra small */ |
| 193 |
@media screen and (max-width: 576px) { |
| 194 |
.wtotem_holder__content { |
| 195 |
margin-bottom: 20px; } } |
| 196 |
|
| 197 |
/* 320-375px Extra small */ |
| 198 |
|
| 199 |
/*# sourceMappingURL=options.css.map */ |
| 200 |
|