fix
Joan Leon
There is no longer any excuse for not playing with #css3 http://enjoycss.com/
Proceed(3)
Thanks for your like.
You've done it, haven't you?
{"sid":"Jza","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="" />
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;
  width: 445px;
  height: 244px;
  position: relative;
  cursor: pointer;
  padding: 10px 20px;
  border: 1px solid rgba(71,71,71,0.9);
  -webkit-border-radius: 151px 0 0 151px;
  border-radius: 151px 0 0 151px;
  font: normal 32px/normal "Times New Roman", Times, serif;
  color: rgba(104,104,104,1);
  text-indent: 20px;
  -o-text-overflow: clip;
  text-overflow: clip;
  letter-spacing: 1px;
  background: url("https://enjoycss.com/bg-img/custom/672-1jbooo1.jpg");
  background-repeat: no-repeat;
  background-position: 101% 100%;
  -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: 5px 5px 8px 2px rgba(0,0,0,0.4) ;
  box-shadow: 5px 5px 8px 2px rgba(0,0,0,0.4) ;
  -webkit-transition: all 300ms cubic-bezier(0.42, 0, 0.58, 1);
  -moz-transition: all 300ms cubic-bezier(0.42, 0, 0.58, 1);
  -o-transition: all 300ms cubic-bezier(0.42, 0, 0.58, 1);
  transition: all 300ms cubic-bezier(0.42, 0, 0.58, 1);
}

.enjoy-css:hover {
  width: 494px;
  opacity: 0.54;
  border: 1px solid rgba(71,71,71,0.32);
  background-repeat: no-repeat;
  background-position: 102% 100%;
  -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;
}