fix
Chris Demeke
Everyone can be a semi web designer now.
Proceed(9)
Thanks for your like.
You've done it, haven't you?
{"sid":"fiH","rid":3,"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
<div class="enjoy-css"></div>
Copy to clipboard
CSS
LESS
SCSS
.enjoy-css {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  width: 100px;
  height: 100px;
  border: none;
  font: normal 16px/1 "Times New Roman", Times, serif;
  color: rgba(255,255,255,1);
  text-align: center;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  background: rgba(0,45,84,0.91);
  -webkit-transition: all 2s cubic-bezier(0.42, 0, 0.58, 1) 10ms;
  -moz-transition: all 2s cubic-bezier(0.42, 0, 0.58, 1) 10ms;
  -o-transition: all 2s cubic-bezier(0.42, 0, 0.58, 1) 10ms;
  transition: all 2s cubic-bezier(0.42, 0, 0.58, 1) 10ms;
  -webkit-transform-origin: 0 0 0;
  transform-origin: 0 0 0;
}

.enjoy-css:hover {
  background: rgba(0,45,84,1);
  -webkit-box-shadow: 4px 4px 6px 1px rgba(0,0,0,0.5) inset;
  box-shadow: 4px 4px 6px 1px rgba(0,0,0,0.5) inset;
  -webkit-transition: all 1ms cubic-bezier(0.42, 0, 0.58, 1) 10ms;
  -moz-transition: all 1ms cubic-bezier(0.42, 0, 0.58, 1) 10ms;
  -o-transition: all 1ms cubic-bezier(0.42, 0, 0.58, 1) 10ms;
  transition: all 1ms cubic-bezier(0.42, 0, 0.58, 1) 10ms;
  -webkit-transform:  scaleX(5) scaleY(5)  ;
  transform:  scaleX(5) scaleY(5)  ;
}