#e8e8e8
1.button { 2 width: 50px; 3 height: 50px; 4 border-radius: 50%; 5 background-color: rgb(20, 20, 20); 6 border: none; 7 font-weight: 600; 8 display: flex; 9 align-items: center; 10 justify-content: center; 11 box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.164); 12 cursor: pointer; 13 transition-duration: .3s; 14 overflow: hidden; 15 position: relative; 16} 17 18.svgIcon { 19 width: 12px; 20 transition-duration: .3s; 21} 22 23.svgIcon path { 24 fill: white; 25} 26 27.button:hover { 28 width: 140px; 29 border-radius: 50px; 30 transition-duration: .3s; 31 background-color: rgb(255, 69, 69); 32 align-items: center; 33} 34 35.button:hover .svgIcon { 36 width: 50px; 37 transition-duration: .3s; 38 transform: translateY(60%); 39} 40 41.button::before { 42 position: absolute; 43 top: -20px; 44 content: "Delete"; 45 color: white; 46 transition-duration: .3s; 47 font-size: 2px; 48} 49 50.button:hover::before { 51 font-size: 13px; 52 opacity: 1; 53 transform: translateY(30px); 54 transition-duration: .3s; 55}
10K views
10K views
Comments
1GabrielSilva0109 22. September at 22:29
22. September at 22:29
Very good !!
MIT License