fix
Dave Ellis
This is a great CSS tool, particularly useful for 3D transforms
Proceed(8)
Thanks for your like.
You've done it, haven't you?
{"sid":"zyJ","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 class="enjoy-css" placeholder="Enjoy" />
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;
  padding: 10px 20px;
  border: 1px solid #b7b7b7;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  font: normal 16px/normal "Times New Roman", Times, serif;
  color: rgba(0,142,198,1);
  -o-text-overflow: clip;
  text-overflow: clip;
  background: rgba(252,252,252,1);
  -webkit-box-shadow: -1px 0 86px 18px rgba(196,13,13,0.2) ;
  box-shadow: -1px 0 86px 18px rgba(196,13,13,0.2) ;
  text-shadow: 1px 1px 0 rgba(255,255,255,0.66) ;
  -webkit-transition: width 4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -moz-transition: width 4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -o-transition: width 4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: width 4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -webkit-transform: rotateX(-1.1459155902616462deg) rotateY(-2.291831180523293deg)   ;
  transform: rotateX(-1.1459155902616462deg) rotateY(-2.291831180523293deg)   ;
}

.enjoy-css:hover {
  width: 300px;
  -webkit-transition: width 200ms cubic-bezier(0.68, -0.55, 0.265, 1.55), all 200ms cubic-bezier(0.42, 0, 0.58, 1) 10ms, background 200ms cubic-bezier(0.42, 0, 0.58, 1) 10ms;
  -moz-transition: width 200ms cubic-bezier(0.68, -0.55, 0.265, 1.55), all 200ms cubic-bezier(0.42, 0, 0.58, 1) 10ms, background 200ms cubic-bezier(0.42, 0, 0.58, 1) 10ms;
  -o-transition: width 200ms cubic-bezier(0.68, -0.55, 0.265, 1.55), all 200ms cubic-bezier(0.42, 0, 0.58, 1) 10ms, background 200ms cubic-bezier(0.42, 0, 0.58, 1) 10ms;
  transition: width 200ms cubic-bezier(0.68, -0.55, 0.265, 1.55), all 200ms cubic-bezier(0.42, 0, 0.58, 1) 10ms, background 200ms cubic-bezier(0.42, 0, 0.58, 1) 10ms;
}

.enjoy-css:focus {
}