HEX
Server: Apache
System: Linux shared178.accountservergroup.com 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64
User: somesolu (2995)
PHP: 8.2.33
Disabled: NONE
Upload Files
File: /home3/somesolu/public_html/wp-content/themes/pillar/style/css/less_framework/transitions.less
// MARKUP:
//
// <section class="transition--NAME">...</section>
//
//
// MODIFIERS:
// --fade - will fade the transition element in with opacity
// --scale - will make the element grow to full size on load
// --slide - will bring the content in from the right-side on load

[class*='transition--']{
	.transition(0.3s,ease);
	opacity: 0;	
	&.transition--active{
		opacity: 1;
	}
}

.transition--scale{
	.scale(.98);
	&.transition--active{
		opacity: 1;
		.scale(1);
	}
}

.transition--slide{
	.translate3d(200px,0,0);
	.translate3d(30vw,0,0);
	&.transition--active{
		.translate3d(0,0,0);
	}
}

.no-page-loader [class*='transition--'] {
	opacity: 1;
}

.no-page-loader .transition--scale{
	opacity: 1;
	.scale(1);
}

.no-page-loader .transition--slide{
	.translate3d(0,0,0);
}