fix
Joan Leon
There is no longer any excuse for not playing with #css3 http://enjoycss.com/
Proceed(7)
Thanks for your like.
You've done it, haven't you?
{"sid":"kzm","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="inicial" value="Home" />
<link async href="http://fonts.googleapis.com/css?family=Roboto" data-generated="http://enjoycss.com" rel="stylesheet" type="text/css"/>
Copy to clipboard
CSS
LESS
SCSS
.inicial {
  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(137,137,137,1);
  -webkit-border-radius: 3px;
  border-radius: 3px;
  font: normal 16px/normal "Roboto", Helvetica, sans-serif;
  color: rgba(255,255,255,0.9);
  -o-text-overflow: clip;
  text-overflow: clip;
  background: rgba(137,137,137,1);
  -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) ;
  text-shadow: -1px -1px 0 rgba(48,48,48,1) ;
  -webkit-transition: font-weight 300ms cubic-bezier(0.42, 0, 0.58, 1);
  -moz-transition: font-weight 300ms cubic-bezier(0.42, 0, 0.58, 1);
  -o-transition: font-weight 300ms cubic-bezier(0.42, 0, 0.58, 1);
  transition: font-weight 300ms cubic-bezier(0.42, 0, 0.58, 1);
  -webkit-transform: rotateX(2.291831180523293deg) rotateY(2.291831180523293deg)   ;
  transform: rotateX(2.291831180523293deg) rotateY(2.291831180523293deg)   ;
}

.inicial:active {
  border: 1px solid #018dc4;
  background: #303030;
  text-shadow: -1px -1px 0 rgba(15,73,168,0.66) ;
  -webkit-transition: font-weight 300ms cubic-bezier(0.42, 0, 0.58, 1), all 200ms cubic-bezier(0.42, 0, 0.58, 1) 10ms;
  -moz-transition: font-weight 300ms cubic-bezier(0.42, 0, 0.58, 1), all 200ms cubic-bezier(0.42, 0, 0.58, 1) 10ms;
  -o-transition: font-weight 300ms cubic-bezier(0.42, 0, 0.58, 1), all 200ms cubic-bezier(0.42, 0, 0.58, 1) 10ms;
  transition: font-weight 300ms cubic-bezier(0.42, 0, 0.58, 1), all 200ms cubic-bezier(0.42, 0, 0.58, 1) 10ms;
  -webkit-transform: rotateX(-8.594366926962348deg) rotateY(-12.032113697747288deg)   ;
  transform: rotateX(-8.594366926962348deg) rotateY(-12.032113697747288deg)   ;
}