fix
Joan Leon
There is no longer any excuse for not playing with #css3 http://enjoycss.com/
Proceed(9)
Thanks for your like.
You've done it, haven't you?
{"sid":"xE","rid":11,"page":"code","page_params":[],"username":""}
Skip
Next

We'll add only required prefixes
for browsers you gonna choose,
based on data from caniuse.com
4+
4+
9+
10.5+
4+
5.0+
2.1+
7+
Hide default rules
Copy to clipboard
HTML
<div class="enjoy-css">Buttons</div>
Copy to clipboard
CSS
LESS
SCSS
.enjoy-css {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  width: 150px;
  padding: 7px 0 8px;
  border: 1px solid rgb(23,45,110);
  border-bottom-color: rgb(14,29,69);
  -webkit-border-radius: 5px;
  border-radius: 5px;
  font: normal normal bold 16px/1 "Times New Roman", Times, serif;
  color: rgb(255, 255, 255);
  text-align: center;
  -o-text-overflow: clip;
  text-overflow: clip;
  background: -webkit-linear-gradient(0deg, rgb(140,156,191) 0, rgb(84,106,158) 50%, rgb(54,81,143) 50%, rgb(61,86,145) 100%), rgb(140, 156, 191);
  background: -moz-linear-gradient(90deg, rgb(140,156,191) 0, rgb(84,106,158) 50%, rgb(54,81,143) 50%, rgb(61,86,145) 100%), rgb(140, 156, 191);
  background: linear-gradient(90deg, rgb(140,156,191) 0, rgb(84,106,158) 50%, rgb(54,81,143) 50%, rgb(61,86,145) 100%), rgb(140, 156, 191);
  -webkit-background-origin: padding-box;
  background-origin: padding-box;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  -webkit-background-size: auto auto;
  background-size: auto auto;
  -webkit-box-shadow: 0 1px 0 0 rgb(177,185,203) inset;
  box-shadow: 0 1px 0 0 rgb(177,185,203) inset;
  text-shadow: 0 -1px 1px rgb(0,15,77) ;
}

.enjoy-css:hover {
  cursor: pointer;
  background: -webkit-linear-gradient(0deg, rgb(127,141,173) 0, rgb(74,94,140) 50%, rgb(47,71,125) 50%, rgb(54,76,128) 100%), rgb(127, 141, 173);
  background: -moz-linear-gradient(90deg, rgb(127,141,173) 0, rgb(74,94,140) 50%, rgb(47,71,125) 50%, rgb(54,76,128) 100%), rgb(127, 141, 173);
  background: linear-gradient(90deg, rgb(127,141,173) 0, rgb(74,94,140) 50%, rgb(47,71,125) 50%, rgb(54,76,128) 100%), rgb(127, 141, 173);
  -webkit-background-origin: padding-box;
  background-origin: padding-box;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  -webkit-background-size: auto auto;
  background-size: auto auto;
}

.enjoy-css:active {
  background: none;
  -webkit-box-shadow: 0 0 20px 0 rgb(29,40,69) inset, 0 1px 0 0 #FFFFFF ;
  box-shadow: 0 0 20px 0 rgb(29,40,69) inset, 0 1px 0 0 #FFFFFF ;
}