Spaces:
Sleeping
Sleeping
File size: 798 Bytes
84d0196 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 | .fancy-download-btn {
background: #1665d8; /* Более тёмный синий */
color: #fff;
border: none;
border-radius: 16px;
padding: 15px 60px;
font-size: 20px;
font-weight: bold;
box-shadow: 0 4px 14px #1665d860;
transition: all 0.22s;
margin: 38px auto 24px auto;
display: block;
cursor: pointer;
}
.fancy-download-btn:hover {
background: #409aff; /* Светлый синий при наведении */
box-shadow: 0 8px 24px #409aff99;
transform: translateY(-2px) scale(1.04);
}
.fancy-download-btn:active {
animation: btn-press 0.18s;
}
@keyframes btn-press {
0% { transform: scale(1.045); }
60% { transform: scale(0.96); }
100% { transform: scale(1); }
}
|