2.4K views
1button { 2 width: 150px; 3 height: 60px; 4 border: 3px solid #315cfd; 5 border-radius: 45px; 6 transition: all 0.3s; 7 cursor: pointer; 8 background: white; 9 font-size: 1.2em; 10 font-weight: 550; 11 font-family: 'Montserrat', sans-serif; 12} 13 14button:hover { 15 background: #315cfd; 16 color: white; 17 font-size: 1.5em; 18}
MIT License