
Untitled
By: a guest on
May 2nd, 2012 | syntax:
None | size: 0.91 KB | hits: 11 | expires: Never
@charset "utf-8";
.button {
display: inline-block;
font-weight: bold;
text-decoration: none;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border-radius: 5px;
border: 2px solid #E6EBF2;
padding: 7px 15px;
color: #ffffff;
background: #4971A0;
background: -moz-linear-gradient(
center bottom,
#4971A0 0%,
#6A8EBB 80%,
#6A8EBB 100%
);
background: -webkit-gradient(
linear,
left 80%,
left top,
color-stop(0, #4971A0),
color-stop(1, #6A8EBB),
color-stop(1, #6A8EBB)
);
}
.button:hover {
color: #ffffff;
border: 2px solid #F4F2A8;
background: #898612;
background: -moz-linear-gradient(
center bottom,
#898612 0%,
#B3AE17 80%,
#B3AE17 100%
);
background: -webkit-gradient(
linear,
left 80%,
left top,
color-stop(0, #898612),
color-stop(1, #B3AE17),
color-stop(1, #B3AE17)
);
}
.button:visited { color: #ffffff; }