fix
Kazumasa Okabe
OnlineTool which allows creating a nice look without writing a code. EnjoyCSS can be easily used by people who are not professionals in CSS coding.
Proceed(7)
Thanks for your like.
You've done it, haven't you?
{"sid":"DB3","rid":7,"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="ibsc-css" value="Make a Donation" />
Copy to clipboard
CSS
LESS
SCSS
.ibsc-css {
  display: inline-block;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  position: fixed;
  cursor: pointer;
  padding: 15px 30px;
  border: 1px solid #018dc4;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  font: normal 21px/normal Verdana, Geneva, sans-serif;
  color: rgba(255,255,255,0.9);
  text-align: center;
  -o-text-overflow: clip;
  text-overflow: clip;
  background: #001133;
  -webkit-box-shadow: 2px 2px 2px 0 rgba(0,0,0,0.2) ;
  box-shadow: 2px 2px 2px 0 rgba(0,0,0,0.2) ;
  -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);
}

.ibsc-css:hover {
  color: rgba(0,17,51,1);
  background: rgba(93,126,191,1);
  text-shadow: 0 0 9px rgba(0,17,51,1) ;
  -webkit-transition: color 300ms cubic-bezier(0.42, 0, 0.58, 1);
  -moz-transition: color 300ms cubic-bezier(0.42, 0, 0.58, 1);
  -o-transition: color 300ms cubic-bezier(0.42, 0, 0.58, 1);
  transition: color 300ms cubic-bezier(0.42, 0, 0.58, 1);
}
Background