HEX
Server: Apache/2
System: Linux ns65.hostinglotus.net 4.18.0-553.16.1.el8_10.x86_64 #1 SMP Thu Aug 8 07:11:46 EDT 2024 x86_64
User: newsnnno (1225)
PHP: 8.2.20
Disabled: exec,system,passthru,shell_exec,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname
Upload Files
File: /home/newsnnno/public_html/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