Видеоответы на вопросы по Tilda

Стилизуем чекбоксы в форме Tilda - Live-CSS-1

Стилизуем  чек-боксы в форме по макету, добавляем необходимую визуализуцию
<style>
.t-checkboxes__wrapper .t-checkbox__control {
    height: 46px;
    border-width: 1px;
    border-radius: 10px;
    background-image: linear-gradient(90deg, rgba(41,38,39,1) 0%, rgba(82,82,82,1) 100%);
    border-color: #878787;
    border-style: solid;
    box-shadow: -2px 2px 10px 0px rgb(181 181 181 / 70%);
    display: flex;
    align-items: center;
    padding-left: 20px;
    transition: all 0.3s linear;
    margin-bottom: 20px;
}

.t-checkboxes__wrapper .t-checkbox__control:hover {
    box-shadow: -2px 2px 10px 0px rgb(181 181 181 / 70%) , -2px 2px 15px 4px #fdcc05;
}    
</style>
Made on
Tilda