Text

Скачать
 
classname: myButton
 
Font Size: 
15px
  bold   italic
Size
Vertical Size: 
11px
Horizontal Size: 
18px
Border
Border Radius: 
6px
Border Size: 
1px
  Box Shadow   /   inset
Vertical Position: 
1px
Horizontal Position: 
0px
Blur Radius: 
0px
Spread Radius: 
0px
  Text Shadow
Vertical Position: 
1px
Horizontal Position: 
0px
Blur Radius: 
0px
 <a href="#" class="myButton">Скачать</a>

.myButton {
	-moz-box-shadow: 0px 1px 0px 0px #ffffff;
	-webkit-box-shadow: 0px 1px 0px 0px #ffffff;
	box-shadow: 0px 1px 0px 0px #ffffff;
	background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #44c767), color-stop(1, #b5ff61));
	background:-moz-linear-gradient(top, #44c767 5%, #b5ff61 100%);
	background:-webkit-linear-gradient(top, #44c767 5%, #b5ff61 100%);
	background:-o-linear-gradient(top, #44c767 5%, #b5ff61 100%);
	background:-ms-linear-gradient(top, #44c767 5%, #b5ff61 100%);
	background:linear-gradient(to bottom, #44c767 5%, #b5ff61 100%);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#44c767', endColorstr='#b5ff61',GradientType=0);
	background-color:#44c767;
	-moz-border-radius:6px;
	-webkit-border-radius:6px;
	border-radius:6px;
	border:1px solid #9ceda4;
	display:inline-block;
	cursor:pointer;
	color:#ffffff;
	font-family:Arial;
	font-size:15px;
	font-weight:bold;
	padding:11px 18px;
	text-decoration:none;
	text-shadow:0px 1px 0px #000000;
}
.myButton:hover {
	background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #b5ff61), color-stop(1, #44c767));
	background:-moz-linear-gradient(top, #b5ff61 5%, #44c767 100%);
	background:-webkit-linear-gradient(top, #b5ff61 5%, #44c767 100%);
	background:-o-linear-gradient(top, #b5ff61 5%, #44c767 100%);
	background:-ms-linear-gradient(top, #b5ff61 5%, #44c767 100%);
	background:linear-gradient(to bottom, #b5ff61 5%, #44c767 100%);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#b5ff61', endColorstr='#44c767',GradientType=0);
	background-color:#b5ff61;
}
.myButton:active {
	position:relative;
	top:1px;
}