fix
Joan Leon
There is no longer any excuse for not playing with #css3 http://enjoycss.com/
Proceed(8)
Thanks for your like.
You've done it, haven't you?
{"sid":"aBx","rid":2,"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="webmail_button" value="WebMail" />
<link async href="http://fonts.googleapis.com/css?family=Alegreya%20Sans%20SC" data-generated="http://enjoycss.com" rel="stylesheet" type="text/css"/>
Copy to clipboard
CSS
LESS
SCSS
.webmail_button {
  display: inline-block;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  width: 85px;
  height: 20px;
  cursor: pointer;
  padding: 3px;
  border: 1px solid #018dc4;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  font: normal 14px/normal "Alegreya Sans SC", Helvetica, sans-serif;
  color: rgba(91,91,91,1);
  text-align: center;
  -o-text-overflow: clip;
  text-overflow: clip;
  background: -webkit-linear-gradient(-90deg, rgba(252,252,252,1) 0, rgba(252,252,252,1) 37%, rgba(178,178,178,1) 100%);
  background: -moz-linear-gradient(180deg, rgba(252,252,252,1) 0, rgba(252,252,252,1) 37%, rgba(178,178,178,1) 100%);
  background: linear-gradient(180deg, rgba(252,252,252,1) 0, rgba(252,252,252,1) 37%, rgba(178,178,178,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-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);
}

.webmail_button:active {
  color: rgba(244,244,244,1);
  background: -webkit-linear-gradient(-90deg, rgba(153,153,153,1) 0, rgba(178,178,178,1) 52%, rgba(178,178,178,1) 100%);
  background: -moz-linear-gradient(180deg, rgba(153,153,153,1) 0, rgba(178,178,178,1) 52%, rgba(178,178,178,1) 100%);
  background: linear-gradient(180deg, rgba(153,153,153,1) 0, rgba(178,178,178,1) 52%, rgba(178,178,178,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;
}