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/notifications.less
// MARKUP
//
// <div class="notification col-*" data-animation="from-*">
//   ...
//   <a class="notification-close">Shut It Down</a>
// </div>
//
// MODIFIERS:
// .pos-right,top,left,bottom - position the notification
// .col-* - control the width of the notification
// [data-animation] - from top,bottom,left,right

.notification{
	max-width: 100%;
	.box-shadow(@box-shadow-level);
	position: fixed;
	z-index: 99;
	pointer-events: none;
	padding: @default-notification-padding;
	margin: 1em;
	&:not([class*='bg-']){
		background: #fff;
	}
	&[class*='col-']{
		min-width: 400px;
	}
	opacity: 0;
	.transition(0.3s,linear);
	.notification-close-cross{
		position: absolute;
		top: 1em;
		z-index: 99;
		right: 1em;
		cursor: pointer;
		.transition(0.1s,linear);
		opacity: .7;
		&:before{
			content: '\2715';
			font-size: 1.5em;
		}
		&:hover{
			opacity: 1;
		}
	}
	&.notification--reveal{
		z-index: 99;
		pointer-events: initial;
		&[data-animation="from-bottom"]{
			.animation(from-bottom,.3s,linear,0s,forwards);
		}
		&[data-animation="from-top"]{
			.animation(from-top,.3s,linear,0s,forwards);
		}
		&[data-animation="from-left"]{
			.animation(from-left,.3s,linear,0s,forwards);
		}
		&[data-animation="from-right"]{
			.animation(from-right,.3s,linear,0s,forwards);
		}
	}
	&.notification--dismissed{
		.animation(fade-out,.4s,linear,0s,forwards) !important;
		pointer-events: none;
	}
}

@media all and (max-width: 767px){
	.notification{
		&[class*='col-']{
			min-width: 0;
		}
	}
}

@keyframes from-bottom{
	from{ .translate3d(0,100%,0); opacity: 0; }
	to{ .translate3d(0,0,0); opacity: 1; }
}

@-moz-keyframes from-bottom{
	from{ .translate3d(0,100%,0); opacity: 0; }
	to{ .translate3d(0,0,0); opacity: 1; }
}

@-webkit-keyframes from-bottom{
	from{ .translate3d(0,100%,0); opacity: 0; }
	to{ .translate3d(0,0,0); opacity: 1; }
}

@keyframes from-top{
	from{ .translate3d(0,-100%,0); opacity: 0; }
	to{ .translate3d(0,0,0); opacity: 1; }
}

@-moz-keyframes from-top{
	from{ .translate3d(0,-100%,0); opacity: 0; }
	to{ .translate3d(0,0,0); opacity: 1; }
}

@-webkit-keyframes from-top{
	from{ .translate3d(0,-100%,0); opacity: 0; }
	to{ .translate3d(0,0,0); opacity: 1; }
}

@keyframes from-left{
	from{ .translate3d(-100%,0,0); opacity: 0; }
	to{ .translate3d(0,0,0); opacity: 1; }
}

@-moz-keyframes from-left{
	from{ .translate3d(-100%,0,0); opacity: 0; }
	to{ .translate3d(0,0,0); opacity: 1; }
}

@-webkit-keyframes from-left{
	from{ .translate3d(-100%,0,0); opacity: 0; }
	to{ .translate3d(0,0,0); opacity: 1; }
}

@keyframes from-right{
	from{ .translate3d(100%,0,0); opacity: 1; }
	to{ .translate3d(0,0,0); opacity: 1; }
}

@-moz-keyframes from-right{
	from{ .translate3d(100%,0,0); opacity: 0; }
	to{ .translate3d(0,0,0); opacity: 1; }
}

@-webkit-keyframes from-right{
	from{ .translate3d(100%,0,0); opacity: 0; }
	to{ .translate3d(0,0,0); opacity: 1; }
}

@keyframes fade-out{
	0%{ opacity: 1; }
	100%{ opacity: 0;}
}

@-webkit-keyframes fade-out{
	0%{ opacity: 1; }
	100%{ opacity: 0;}
}

@-moz-keyframes fade-out{
	0%{ opacity: 1; }
	100%{ opacity: 0; }
}