fix
Joan Leon
There is no longer any excuse for not playing with #css3 http://enjoycss.com/
Proceed(7)
Thanks for your like.
You've done it, haven't you?
{"sid":"e7d","rid":1,"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 class="enjoy-css" placeholder="First Name" />
Copy to clipboard
CSS
LESS
SCSS
.enjoy-css {
  display: inline-block;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  content: ;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  margin: 2px;
  padding: 10px 20px;
  outline: none;
  border: 5px solid #b7b7b7;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  font: normal 16px/normal "Times New Roman", Times, serif;
  color: rgba(0,142,198,1);
  text-decoration: none;
  text-align: left;
  text-indent: 0;
  -o-text-overflow: clip;
  text-overflow: clip;
  letter-spacing: 0;
  white-space: normal;
  word-spacing: 0;
  word-wrap: ;
  background: rgba(255,255,255,1);
  -webkit-box-shadow: 2px 2px 2px 0 rgba(112,50,50,0.2) inset;
  box-shadow: 2px 2px 2px 0 rgba(112,50,50,0.2) inset;
  text-shadow: 1px 1px 0 rgba(255,255,255,0.66) ;
  -webkit-transition: all 200ms cubic-bezier(0.95, 0.05, 0.795, 0.035);
  -moz-transition: all 200ms cubic-bezier(0.95, 0.05, 0.795, 0.035);
  -o-transition: all 200ms cubic-bezier(0.95, 0.05, 0.795, 0.035);
  transition: all 200ms cubic-bezier(0.95, 0.05, 0.795, 0.035);
}