265 views
1button { 2 display: inline-block; 3 border-radius: 4px; 4 background-color: #560af0; 5 border: none; 6 color: #FFFFFF; 7 text-align: center; 8 font-size: 14px; 9 font-weight: bold; 10 padding: 16px; 11 width: 130px; 12 transition: all 0.2s; 13 cursor: pointer; 14 margin: 5px; 15} 16 17button span { 18 cursor: pointer; 19 display: inline-block; 20 position: relative; 21 transition: 0.2s; 22} 23 24button span:after { 25 content: '»'; 26 position: absolute; 27 opacity: 0; 28 top: 0; 29 right: -15px; 30 transition: 0.2s; 31} 32 33button:hover span { 34 padding-right: 15px; 35} 36 37button:hover span:after { 38 opacity: 1; 39 right: 0; 40} 41 42button:hover { 43 color: #560af0; 44 background-color: #FFFFFF; 45 box-shadow: 4px 5px 17px -4px #560af0; 46}
PranabKumarSahoo
Pranab Kumar Sahoo
MIT License