fix
Rashel Hariri
This is so helpful!
Proceed(8)
Thanks for your like.
You've done it, haven't you?
{"sid":"tZI","rid":1,"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="Категорирование" />
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 #018dc4;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  font: normal medium/normal Arial, Helvetica, sans-serif;
  color: rgba(220,220,220,1);
  -o-text-overflow: clip;
  text-overflow: clip;
  background: #0199d9;
  -webkit-box-shadow: 0 0 0 0 rgba(0,0,0,0.2) ;
  box-shadow: 0 0 0 0 rgba(0,0,0,0.2) ;
  text-shadow: 2px 2px 2px rgba(0,0,0,0.5) ;
  -webkit-transition: box-shadow 300ms cubic-bezier(0.42, 0, 0.58, 1) 10ms;
  -moz-transition: box-shadow 300ms cubic-bezier(0.42, 0, 0.58, 1) 10ms;
  -o-transition: box-shadow 300ms cubic-bezier(0.42, 0, 0.58, 1) 10ms;
  transition: box-shadow 300ms cubic-bezier(0.42, 0, 0.58, 1) 10ms;
}

.button:hover {
  color: rgba(255,255,255,0.9);
  -webkit-box-shadow: 0 3px 4px 0 rgba(180,180,180,1) ;
  box-shadow: 0 3px 4px 0 rgba(180,180,180,1) ;
  text-shadow: -1px -1px 0 rgba(15,73,168,0.66) ;
}

.button:active {
  color: rgba(40,40,40,1);
  -webkit-box-shadow: 0 0 0 0 rgba(0,0,0,0.2) ;
  box-shadow: 0 0 0 0 rgba(0,0,0,0.2) ;
}