16 lines
304 B
CSS
16 lines
304 B
CSS
|
/*
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
.opacity-animated {
|
||
|
-webkit-transition: opacity 1s; /* For Safari 3.1 to 6.0 */
|
||
|
transition: opacity 1s;
|
||
|
-webkit-transition: padding-top 1s; /* For Safari 3.1 to 6.0 */
|
||
|
transform: scale(1);
|
||
|
transition: 1s all ease;
|
||
|
}
|
||
|
|
||
|
.flexFont {
|
||
|
height:100%;
|
||
|
width:100%;
|
||
|
}
|