#e8e8e8
1.filter { 2 width: 50px; 3 height: 50px; 4 border-radius: 10px; 5 display: flex; 6 align-items: center; 7 justify-content: center; 8 border: 1px solid rgba(0, 0, 0, 0.192); 9 cursor: pointer; 10 box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.021); 11 transition: all 0.3s; 12} 13 14.filter svg { 15 height: 16px; 16 fill: rgb(77, 77, 77); 17 transition: all 0.3s; 18} 19.filter:hover { 20 box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.11); 21 background-color: rgb(59, 59, 59); 22} 23.filter:hover svg { 24 fill: white; 25} 26
225 views
225 views
Comments
MIT License