Ethereum Graphical Buttons

RaeesRaees Member Posts: 7

I just made few graphical buttons for ethereum. Here are those

Pay Button

pay.png

http://etherforum.org/i/pay.png

payh.png

http://etherforum.org/i/payh.png

CSS/HTML Button Code

.paybutton {
background:url(http://etherforum.org/i/pay.png);
width:200px;
height:40px;
display:block;
cursor:pointer;
border-radius:2px;
-webkit-transition:all .2s ease-in-out;
-moz-transition:all .5s ease-in-out;
}

.paybutton:hover {
background:url(http://etherforum.org/i/payh.png);
}

Donate Button

donate.png

http://etherforum.org/i/donate.png

donateh.png

http://etherforum.org/i/donateh.png

CSS/HTML Button Code

.donatebutton {
background:url(http://etherforum.org/i/donate.png);
width:200px;
height:40px;
display:block;
cursor:pointer;
border-radius:2px;
-webkit-transition:all .2s ease-in-out;
-moz-transition:all .5s ease-in-out;
}

.donatebutton:hover {
background:url(http://etherforum.org/i/donateh.png);
}

Ethereum Accepted Here Button

ethaccepted.png

http://etherforum.org/i/ethaccepted.png

ethacceptedh.png

http://etherforum.org/i/ethacceptedh.png

Comments

Sign In or Register to comment.