fix
Rodrigo Kono
This webApp can help for developers who are not masters in CSS
Proceed(2)
Thanks for your like.
You've done it, haven't you?
{"sid":"gSu","rid":0,"page":"code","page_params":[],"username":"chrisanova"}
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="Enjoy" />
Copy to clipboard
CSS
LESS
SCSS
.enjoy-css {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  position: absolute;
  padding: 10px 20px;
  overflow: auto;
  border: 1px solid #b7b7b7;
  border-left-color: rgba(0,0,0,0.65);
  -webkit-border-radius: 5px;
  border-radius: 5px;
  font: normal 2em/normal Arial, Helvetica, sans-serif;
  color: rgba(0,0,0,1);
  -o-text-overflow: clip;
  text-overflow: clip;
  background: rgba(255,255,255,1);
  text-shadow: 1px 1px 0 rgba(255,255,255,0.66) ;
  -webkit-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
  -moz-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
  -o-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
  transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
}

.enjoy-css:hover {
  border: 1px solid;
  color: rgba(90,90,90,1);
  -webkit-box-shadow: 0 0 0 5px rgba(0,114,221,0.33) ;
  box-shadow: 0 0 0 5px rgba(0,114,221,0.33) ;
  text-shadow: none;
}

.enjoy-css:focus {
  border: 1px solid rgba(0,0,0,0.65);
  color: rgba(0,134,211,1);
  -webkit-box-shadow: 0 0 0 10px rgba(0,114,221,0.33) ;
  box-shadow: 0 0 0 10px rgba(0,114,221,0.33) ;
  text-shadow: 1px 1px 0 rgba(255,255,255,0.66) ;
}