fix
Leonardo Montenegro
I recommend this online #CSS3 code generator by @enjoycss
Proceed(9)
Thanks for your like.
You've done it, haven't you?
{"sid":"XBy","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=" 삼아 뉴스" />
<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
.button {
  display: inline-block;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  position: relative;
  cursor: pointer;
  padding: 0 20px 0 73px;
  border: none;
  font: normal normal bold 20px/2.4 "Open Sans", Helvetica, sans-serif;
  color: rgba(0,0,0,1);
  text-transform: capitalize;
  text-indent: -8px;
  -o-text-overflow: clip;
  text-overflow: clip;
  background: rgba(255,255,255,1);
  -webkit-box-shadow: 0 5px 0 0 rgb(87,151,180) ;
  box-shadow: 0 5px 0 0 rgb(87,151,180) ;
  text-shadow: 0 1px 1px rgba(87,151,180,0.36) ;
  -webkit-transition: top 50ms cubic-bezier(0.42, 0, 0.58, 1);
  -moz-transition: top 50ms cubic-bezier(0.42, 0, 0.58, 1);
  -o-transition: top 50ms cubic-bezier(0.42, 0, 0.58, 1);
  transition: top 50ms cubic-bezier(0.42, 0, 0.58, 1);
}

.button:hover {
  font: normal 20px/2.4 "Open Sans", Helvetica, sans-serif;
  color: rgba(255,255,255,0.9);
  -webkit-box-shadow: 0 5px 0 0 rgba(78,136,160,1) ;
  box-shadow: 0 5px 0 0 rgba(78,136,160,1) ;
  -webkit-transition: none;
  -moz-transition: none;
  -o-transition: none;
  transition: none;
}

.button:active {
  top: 2px;
  background: rgba(220,220,220,1);
  -webkit-box-shadow: 0 3px 0 0 rgba(78,136,160,1) ;
  box-shadow: 0 3px 0 0 rgba(78,136,160,1) ;
  -webkit-transform-origin: 50% 100% 0;
  transform-origin: 50% 100% 0;
}