fix
Amira Dhalla
Cool tool alert: a CSS code generator http://enjoycss.com/start/ #teachtheweb
Proceed(9)
Thanks for your like.
You've done it, haven't you?
{"sid":"x3","rid":3,"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="Enjoy" />
Copy to clipboard
CSS
LESS
SCSS
.enjoy-css {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  width: 95%;
  cursor: pointer;
  padding: 5px 10px;
  border: 0 solid #018dc4;
  border-bottom: 1px solid rgba(1,141,196,0.9);
  -webkit-border-radius: 3px;
  border-radius: 3px;
  font: normal 14px/normal Arial, Helvetica, sans-serif;
  color: rgba(0,0,0,0.9);
  -o-text-overflow: clip;
  text-overflow: clip;
  background: rgba(192,234,249,0.9);
  -webkit-transition: all 300ms cubic-bezier(0.23, 1, 0.32, 1);
  -moz-transition: all 300ms cubic-bezier(0.23, 1, 0.32, 1);
  -o-transition: all 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.enjoy-css:hover {
  background: rgba(168,184,247,0.9);
}