#e8e8e8
1button { 2 width: 100px; 3 height: 32px; 4 background-color: #4267B2; 5 border-radius: 4px; 6 border: none; 7 cursor: pointer; 8 display: flex; 9 align-items: center; 10 padding: 0 8px; 11 justify-content: space-between; 12 transition: all 0.3s; 13} 14 15button:hover { 16 opacity: 0.85; 17 transform: translateY(-4px); 18} 19 20button .label { 21 font-size: 12px; 22 line-height: 32px; 23 color: #fff; 24 font-weight: 700; 25 letter-spacing: 1px; 26 margin: 0 auto; 27} 28 29button svg { 30 fill: #fff; 31 width: 25px; 32 height: 25px; 33}
329 views
Variation of abutton
329 views
Variation of abutton
Comments
MIT License