#e8e8e8
1.Btn { 2 width: 200px; 3 height: 40px; 4 border: none; 5 border-radius: 40px; 6 background: linear-gradient(to right,#bf953f,#fcf6ba,#b38728,#fbf5b7,#aa771c); 7 display: flex; 8 align-items: center; 9 justify-content: center; 10 gap: 8px; 11 font-size: 0.8em; 12 color: rgb(121, 103, 3); 13 font-weight: 600; 14 cursor: pointer; 15 position: relative; 16 z-index: 2; 17 transition-duration: 3s; 18 box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.144); 19 background-size: 200% 200%; 20} 21 22.logoIcon path { 23 fill: rgb(121, 103, 3); 24} 25 26.Btn:hover { 27 transform: scale(0.95); 28 transition-duration: 3s; 29 animation: gradient 5s ease infinite; 30 background-position: right; 31} 32
713 views
713 views
Comments
MIT License