#e8e8e8
1button { 2 padding: 1.3em 3em; 3 font-size: 12px; 4 text-transform: uppercase; 5 letter-spacing: 2.5px; 6 font-weight: 500; 7 color: #000; 8 background-color: rgba(255, 255, 255, 0.726); 9 border: none; 10 border-radius: 45px; 11 box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1); 12 transition: all 0.3s ease 0s; 13 cursor: pointer; 14 outline: none; 15} 16 17button:hover { 18 background-color: #3323c4; 19 box-shadow: 0px 15px 20px rgba(46, 229, 157, 0.4); 20 color: #fff; 21 transform: translateY(-7px); 22} 23 24button:active { 25 transform: translateY(-1px); 26 background-color: #584bd1; 27}
552 views
Variation of abutton
552 views
Variation of abutton
Comments
MIT License