D0r11s (обсуждение | вклад) м (test1) |
D0r11s (обсуждение | вклад) м (test1) |
||
| Строка 98: | Строка 98: | ||
background: #FF3003; | background: #FF3003; | ||
border: solid; | border: solid; | ||
border-color: #e21a41; | |||
} | } | ||
.btn:active { | .btn:active { | ||
Версия от 20:24, 3 августа 2024
@keyframes animationOne {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@keyframes text1 {
0% {
color: #000;
margin-bottom: -40px;
}
85% {
letter-spacing: 8px;
margin-bottom: -40px;
}
}
.block-animation {
width: 90px;
height: 50px;
background-color: #ffb90f;
transition: width 1s cubic-bezier(0, 0, 1, 1) 50ms;
}
.block-animation:hover {
width: 590px;
background-color: red;
animation: shake 0.5s;
animation-iteration-count: infinite;
}
@keyframes shake {
0% { transform: translate(1px, 1px) rotate(0deg); }
10% { transform: translate(-1px, -2px) rotate(-1deg); }
20% { transform: translate(-3px, 0px) rotate(1deg); }
30% { transform: translate(3px, 2px) rotate(0deg); }
40% { transform: translate(1px, -1px) rotate(1deg); }
50% { transform: translate(-1px, 2px) rotate(-1deg); }
60% { transform: translate(-3px, 1px) rotate(0deg); }
70% { transform: translate(3px, 1px) rotate(-1deg); }
80% { transform: translate(-1px, -1px) rotate(1deg); }
90% { transform: translate(1px, 2px) rotate(0deg); }
100% { transform: translate(1px, -2px) rotate(-1deg); }
}
h1 {
font-family: Trebuchet MS, sans-serif;
}
.underline-one {
color: #00bfff; /* Цвет обычной ссылки */
position: relative;
cursor: pointer;
text-decoration: none; /* Убираем подчеркивание */
}
.underline-one:after {
content: "";
display: block;
position: absolute;
right: 0;
bottom: -3px;
width: 0;
height: 1px; /* Высота линии */
background-color: black; /* Цвет подчеркивания при исчезании линии*/
transition: width 0.5s; /* Время эффекта */
}
.underline-one:hover:after {
content: "";
width: 100%;
display: block;
position: absolute;
left: 0;
bottom: -1px;
height: 1px; /* Высота линии */
background-color: red; /* Цвет подчеркивания при появлении линии*/
transition: width 0.5s; /* Время эффекта */
}
.btn {
font-weight: 700;
color: white;
text-decoration: none;
padding: .8em 1em calc(.8em + 3px);
border-radius: 3px;
background: #CD2602;
box-shadow: 0 -5px #9B111E inset;
transition: 0.2s;
margin: 5px;
}
.btn:hover {
background: #FF3003;
border: solid;
border-color: #e21a41;
}
.btn:active {
background: #CD2A19;
box-shadow: 0 5px #9B111E inset;
}