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":"1dvA","rid":0,"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
<input type="button" class="enjoy-css" value="Enjoy" />
Copy to clipboard
CSS
LESS
SCSS
.enjoy-css {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  cursor: pointer;
  padding: 10px 20px;
  border: 1px solid #018dc4;
  -webkit-border-radius: 8px;
  border-radius: 8px;
  font: normal 16px/normal "Times New Roman", Times, serif;
  color: rgba(255,255,255,0.9);
  text-indent: 4px;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  letter-spacing: 4px;
  white-space: pre;
  background: #0199d9;
  -webkit-box-shadow: 0 0 0 1px rgba(0,0,0,0.2) ;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.2) ;
  text-shadow: -1px -1px 0 rgba(15,73,168,0.66) ;
  -webkit-transition: color 300ms cubic-bezier(0.405, 0.235, 0.39, 1.09), background 200ms cubic-bezier(0.46, 0.395, 0.445, 1.01) 10ms;
  -moz-transition: color 300ms cubic-bezier(0.405, 0.235, 0.39, 1.09), background 200ms cubic-bezier(0.46, 0.395, 0.445, 1.01) 10ms;
  -o-transition: color 300ms cubic-bezier(0.405, 0.235, 0.39, 1.09), background 200ms cubic-bezier(0.46, 0.395, 0.445, 1.01) 10ms;
  transition: color 300ms cubic-bezier(0.405, 0.235, 0.39, 1.09), background 200ms cubic-bezier(0.46, 0.395, 0.445, 1.01) 10ms;
}