HEX
Server: Apache/2.4.29 (Ubuntu)
System: Linux bareserver 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
User: root (0)
PHP: 7.2.24-0ubuntu0.18.04.17
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,
Upload Files
File: /var/www/html/site/newsite/wp-content/themes/digital-download/sass/components/_breadcrumbs.scss
#crumbs{
	font-size: 0.7em;
	line-height: 1.2em;
	overflow: hidden;
	margin: 0 0 40px;
	padding: 0;
	list-style: none;
	overflow: hidden;

	li{
		float: left;
		margin-right: 2px;

		&:first-child {

			a{

				&:before{

					display: none;
				} //a:before

			} //a

		} //li:first-child

	} //li

	a{
		display: block;
		background: #efefef;
		color: #6e6e6e;
		padding: 4px 5px 4px 11px;
		position: relative;

		&:after{
			width: 0;
			height: 0;
			border-top: 13px solid transparent;
			border-left: 7px solid #efefef;
			border-bottom: 13px solid transparent;
			position: absolute;
			top: 0;
			right: -7px;
			content: '';
			z-index: 1;
		} //after

		&:before{
			width: 0;
			height: 0;
			border-top: 13px solid transparent;
			border-left: 7px solid $white_color;
			border-bottom: 13px solid transparent;
			position: absolute;
			top: 0;
			left: 0;
			content: '';
		} //before

		&:hover,
		&:focus{
			text-decoration: none;
			background: $primary_color;
			color: $white_color;

			&:after{
				border-left-color: $primary_color;
			}
		} //hover
	} //a

	.current{
		background: $primary_color;
		color: $white_color;
		padding: 4px 11px 4px 15px;
		position: relative;

		&:after{
			width: 0;
			height: 0;
			border-top: 13px solid transparent;
			border-left: 7px solid $primary_color;
			border-bottom: 13px solid transparent;
			position: absolute;
			top: 0;
			right: -7px;
			content: '';
		}

		&:before{
			width: 0;
			height: 0;
			border-top: 13px solid transparent;
			border-left: 7px solid $white_color;
			border-bottom: 13px solid transparent;
			position: absolute;
			top: 0;
			left: 0;
			content: '';
		}

	} //current

} //crumbs