fix
Chris Demeke
Everyone can be a semi web designer now.
Proceed(9)
Thanks for your like.
You've done it, haven't you?
{"sid":"lA3","rid":13,"page":"code","page_params":[],"username":"paalmee"}
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
<div class="enjoy-css">Delete</div>
<link async href="http://fonts.googleapis.com/css?family=Actor" data-generated="http://enjoycss.com" rel="stylesheet" type="text/css"/>
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;
  cursor: pointer;
  padding: 10px 20px;
  border: none;
  -webkit-border-radius: 50px;
  border-radius: 50px;
  font: normal 16px/normal "Actor", Helvetica, sans-serif;
  color: rgba(255, 255, 255, 0.901961);
  -o-text-overflow: clip;
  text-overflow: clip;
  background: rgb(219, 57, 57);
  -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 {
  color: #ffffff;
  background: #a52222;
}

.enjoy-css:active {
  color: rgba(255, 255, 255, 0.901961);
  background: #f94545;
}