Remove leading 0s. Add bg-animate class.

This commit is contained in:
mrmrs 2016-09-17 15:24:18 +01:00
parent d661a49634
commit 1b73d1cdf5

View File

@ -84,7 +84,7 @@
-moz-osx-font-smoothing: grayscale;
backface-visibility: hidden;
transform: translateZ(0);
transition: transform 0.25s ease-in-out;
transition: transform .25s ease-in-out;
}
.grow-large:hover,
@ -110,9 +110,9 @@
*/
.shadow-hover::after {
box-shadow: 0px 0px 8px 2px rgba( 0, 0, 0, 0.2 );
box-shadow: 0px 0px 8px 2px rgba( 0, 0, 0, .2 );
opacity: 0;
transition: opacity 0.25s ease-in-out;
transition: opacity .25s ease-in-out;
}
.shadow-hover:hover::after,
@ -120,3 +120,11 @@
opacity: 1;
}
/* Combine with classes in skins and skins-pseudo for
* thousands of different transition possibilities. */
.bg-animate:hover,
.bg-animate:focus {
transition: background-color .15s ease-in-out;
}