HEX
Server: Apache/2.4.52 (Ubuntu)
System: Linux WebLive 5.15.0-79-generic #86-Ubuntu SMP Mon Jul 10 16:07:21 UTC 2023 x86_64
User: ubuntu (1000)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /var/www/html/wpkoopkj/wp-content/themes/ohio/assets/sass/components/_alerts.scss
.alert {
	background-color: $color-neutral-6;
	padding: 1rem $grid-spacer;

	@include inline-flex;
	@include flex-just(space-between);
	@include border-radius;
	@include transition;

	.icon-button {
		color: inherit;
		margin: -2% -2% -2% 2%;
	}

	a {
		
		&:hover {
			background-image: linear-gradient(currentColor 0px, currentColor 100%);
		}
	}

	&.-block {

		@include flex;
	}

	&.-success {
		background-color: rgba($color-success, 0.15);
		color: $color-success;
	}

	&.-warning {
		background-color: rgba($color-warning, 0.15);
		color: $color-warning;
	}

	&.-danger {
		background-color: rgba($color-danger, 0.15);
		color: $color-danger;
	}

	&.-small {
		padding: 0.5rem 1rem;
		font-size: $font-size-small;
	}

	&.-large {
		padding: 1.25rem 1.5rem;
		font-size: $font-size-large;
	}

	&.-fixed {
		position: fixed;
		transform: translateX(-50%);
		left: 50%;
		z-index: 51;

		a {
			font-weight: 600;
		}

		@include spacer(bottom);
		@include box-shadow(false, 0px, 5px, 10px, 0px, $color-neutral-6);

		@include lg-screen { 

			.icon-button {
				margin: -0.2rem -0.6rem -0.2rem 0.6rem;
			}
		}

		@include sm-screen {

			transform: none;

			@include spacer(left);
			@include spacer(right);
		}

		&.-success {
			background-color: lighten($color-success, 50%);
		}

		&.-danger {
			background-color: lighten($color-danger, 40%);
		}
	}
}

.minimal-scheme {

	.alert {
		
		@include border-radius(0);
	}
}