fix
Leonardo Montenegro
I recommend this online #CSS3 code generator by @enjoycss
Proceed(6)
Thanks for your like.
You've done it, haven't you?
{"sid":"eXT","rid":4,"page":"code","page_params":[],"username":"tomas.stonehouse"}
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="navigation" value="EMPRESA" />
<link async href="http://fonts.googleapis.com/css?family=Open%20Sans" data-generated="http://enjoycss.com" rel="stylesheet" type="text/css"/>
Copy to clipboard
CSS
LESS
SCSS
.navigation {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  width: 274px;
  height: 135px;
  padding: 10%;
  overflow: hidden;
  border-top: 1px double rgba(58,54,53,1);
  border-right: 0 solid rgba(58,54,53,1);
  border-bottom: 1px double rgba(58,54,53,1);
  border-left: 0 solid rgba(58,54,53,1);
  font: normal 2em/4 "Open Sans", Helvetica, sans-serif;
  color: rgba(58,54,53,1);
  text-align: center;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  letter-spacing: 2px;
  background: #ffffff;
  -webkit-transition: all 200ms cubic-bezier(0.505, -0.04, 0, 0.985) 10ms;
  -moz-transition: all 200ms cubic-bezier(0.505, -0.04, 0, 0.985) 10ms;
  -o-transition: all 200ms cubic-bezier(0.505, -0.04, 0, 0.985) 10ms;
  transition: all 200ms cubic-bezier(0.505, -0.04, 0, 0.985) 10ms;
}

.navigation:hover {
  border-top: 1px solid rgba(58,54,53,1);
  border-bottom: 1px solid rgba(58,54,53,1);
  font: normal normal bold 2.3em/4 "Open Sans", Helvetica, sans-serif;
  letter-spacing: 1px;
  background: #fff6e5;
  -webkit-transition: none;
  -moz-transition: none;
  -o-transition: none;
  transition: none;
}