#e8e8e8
1.testbutton { 2 display: block; 3 font-family: helvetica; 4 color: #000; 5 font-size: 16px; 6 font-weight: bold; 7 box-shadow: 9px 8px 0px -1px#BEE2F9, 9px 8px 0px 1px #000; 8 padding: 12px 25px; 9 border-radius: 11px; 10 border: 2px solid #000; 11 background: linear-gradient(to top, #63B8EE, #468CCF); 12 transition: .3s; 13 cursor: pointer; 14} 15 16.testbutton:hover { 17 transition: .3s; 18 transform: translate(-.3em, -.3em); 19 box-shadow: 14px 13px 0px -1px #BEE2F9, 14px 13px 0px 1px #000; 20 border: 2px solid #000; 21} 22 23.testbutton:active { 24 transition: .3s; 25 transform: translate(.6em, .6em); 26 box-shadow: 0px 0px 0px -1px #BEE2F9, 0px 0px 0px 0.1px#000; 27}
Comments
MIT License