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":"jGd","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="Button" value="Bosch" />
Copy to clipboard
CSS
LESS
SCSS
.Button {
  display: inline-block;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  cursor: pointer;
  padding: 10px 20px;
  border: 1px solid rgba(212,212,212,0.9);
  font: normal 16px/normal Arial, Helvetica, sans-serif;
  color: rgba(104,113,117,0.9);
  -o-text-overflow: clip;
  text-overflow: clip;
  background: -webkit-linear-gradient(90deg, rgba(244,244,244,1) 0, rgba(255,255,255,1) 100%);
  background: -moz-linear-gradient(0deg, rgba(244,244,244,1) 0, rgba(255,255,255,1) 100%);
  background: linear-gradient(0deg, rgba(244,244,244,1) 0, rgba(255,255,255,1) 100%);
  background-position: 50% 50%;
  -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-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);
}

.Button:hover {
  background: -webkit-linear-gradient(90deg, rgba(230,230,230,1) 0, rgba(240,240,240,1) 100%);
  background: -moz-linear-gradient(0deg, rgba(230,230,230,1) 0, rgba(240,240,240,1) 100%);
  background: linear-gradient(0deg, rgba(230,230,230,1) 0, rgba(240,240,240,1) 100%);
  background-position: 50% 50%;
  -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;
}

.Button:active {
  background: -webkit-linear-gradient(90deg, rgba(213,213,213,1) 0, rgba(223,223,223,1) 100%);
  background: -moz-linear-gradient(0deg, rgba(213,213,213,1) 0, rgba(223,223,223,1) 100%);
  background: linear-gradient(0deg, rgba(213,213,213,1) 0, rgba(223,223,223,1) 100%);
  background-position: 50% 50%;
  -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;
}
Background