<style>
.t142__submit{
transition: all 400ms ease;
}
.t142__submit:hover {
-webkit-transform: scale(1.1);
-ms-transform: scale(1.1);
transform: scale(1.1);
}
</style>
<Начали добавлять стиль>
Для всего с классом .t142__submit {
Все анимации переходов состояния должны быть плавными и длиться 400 милисекунд
}
Для всего с классом .t142__submit при наведении {
На всех возможных экранах увеличить в 1.1 раза
}
</Добавили стиль>
<style>
p {
color: black;
}
h1 {
color; red;
}
</style>
<Начинаем добавлять стиль>
текст в параграфах {
цвет: чёрный
}
заголовок первого уровня {
цвет: красный
}
</Добавили стиль>
<style>
p.superclass {
color: red
}
</style>
<style>
#rec87327946 .t-descr_xxs {
color: red;
}
</style>
<Начинаем добавлять стиль>
Для элементов с классом t-descr_xxs в блоке с id rec87327946 {
цвет: красный;
}
</Добавили стиль>
<style>
.t396__artboard img {
filter: blur(0px);
transform: scale(1);
transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.t396__artboard img::after {
filter: blur(10px);
transform: scale(1.1);
transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.t396__artboard img:hover {
filter: blur(10px);
transform: scale(1.1);
transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.t396__artboard img:hover::after {
opacity: 1;
transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.t396__elem {
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
-webkit-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.t396__elem::after {
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
opacity: 0;
-webkit-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.t396__elem:hover {
-webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}
.t396__elem:hover::after {
opacity: 1;
}
.tn-atom {
overflow: hidden;
}
[data-elem-type="text"] {
pointer-events:none;
box-shadow: none !important;
-moz-box-shadow: none !important;
-webkit-box-shadow: none !important;
}
</style>
<style>
.t396__artboard img {
...
}
.t396__artboard img::after {
...
}
.t396__artboard img:hover {
...
}
.t396__artboard img:hover::after {
...
}
</style>
<style>
.tn-atom {
overflow: hidden;
}
</style>
<style>
[data-elem-type="text"] {
pointer-events:none;
box-shadow: none !important;
-moz-box-shadow: none !important;
-webkit-box-shadow: none !important;
}
</style>