Arkadaşlar bir Buton yapma sitesinden yaptım.
Caps
Css
Caps
Css
Kod:
.button {
border-top: 1px solid #000000;
background: #000000;
background: -webkit-gradient(linear, left top, left bottom, from(#787373), to(#000000));
background: -webkit-linear-gradient(top, #787373, #000000);
background: -moz-linear-gradient(top, #787373, #000000);
background: -ms-linear-gradient(top, #787373, #000000);
background: -o-linear-gradient(top, #787373, #000000);
padding: 2px 4px;
-webkit-border-radius: 40px;
-moz-border-radius: 40px;
border-radius: 40px;
-webkit-box-shadow: rgba(0,0,0,1) 0 1px 0;
-moz-box-shadow: rgba(0,0,0,1) 0 1px 0;
box-shadow: rgba(0,0,0,1) 0 1px 0;
text-shadow: rgba(0,0,0,.4) 0 1px 0;
color: white;
font-size: 11px;
font-family: Georgia, serif;
text-decoration: none;
vertical-align: middle;
}
.button:hover {
border-top-color: #eb7a17;
background: #eb7a17;
color: #000000;
}
.button:active {
border-top-color: #1b435e;
background: #1b435e;
}