Outline
Our goal is to make clients happy and help them get what they want
Tilda Publishing
Shadow
Our goal is to make clients happy and help them get what they want
Tilda Publishing

Как сделать обводку или тень в блоке ТЕ100 для Tilda?

Добавляем тень или обводку при наведении на элементы блока ТЕ100

Стили добавляем в блок ДРУГОЕ►Т123

1

<style>
/*Добавляем обводку*/
  .t686__table {
    width: 90% !important;
    margin: 5px;
    -webkit-transition: all ease-in-out .25s;
    transition: all cubic-bezier(0.68, -0.55, 0.27, 1.55) .3s;
}
 .t686__table:hover {
   outline: 5px solid #ffd800;
}
</style>

2

<style>
/*Добавляем тень*/
  .t686__table {
    width: 90% !important;
    margin: 6px;
    -webkit-transition: all cubic-bezier(0.68, -0.55, 0.27, 1.55) .3s;
    transition: all cubic-bezier(0.68, -0.55, 0.27, 1.55) .3s;
}
 .t686__table:hover {
       box-shadow: 0 0 6px 3px rgba(0, 0, 0, 0.5);
}
</style>
Made on
Tilda