Exploiting-Vulnerable-Website / templates / scss / _site-navbar.scss
_site-navbar.scss
Raw
.site-logo {
	position: relative;
	// left: 0;
	font-weight: 900;	
	font-size: 1.3rem;
	span {
		font-size: 2rem;
	}
	a {
		color: $white;
	}
}
.site-navbar {

	margin-bottom: 0px;
	z-index: 1999;
	position: absolute;
	width: 100%;
	
	.container-fluid {
		padding-left: 7rem;
		padding-right: 7rem;
	}
	
	
	.site-navigation {
		&.border-bottom {
			border-bottom: 1px solid lighten($gray-1, 80%)!important;
		}
		.site-menu {
			
			margin-bottom: 0;
			.active {
				> a {
					color: $white;
					display: inline-block;
					padding: 10px 20px;
					position: relative;
					&:after {
						content: "";
						height: 2px;
						position: absolute;
						left: 20px;
						right: 20px;
						bottom: 0;
						background: $white;
						opacity: 1;
						visibility: visible;
					}
				}
			}
			a {
				text-decoration: none!important;
				display: inline-block;
			}
			> li {
				display: inline-block;
				.desc {
					font-size: 12px;
					color: rgb(150, 150, 150);
				}
				> a {
					padding: 10px 20px;
					color: $white;
					display: inline-block;
					text-decoration: none!important;
					position: relative;
					&:after {
						content: "";
						height: 2px;
						position: absolute;
						left: 20px;
						right: 20px;
						bottom: 0;
						background: $white;
						opacity: 0;
						visibility: hidden;
					}
					&:hover {
						color: $white;
						&:after {
							opacity: 1;
							visibility: visible;
						}
					}
				}
			}
			.has-children {
				position: relative;
				> a {
					position: relative;
					padding-right: 20px;						
					&:before {
						position: absolute;
						content: "\e313";
						font-size: 16px;
						top: 50%;
						right: 0;
						transform: translateY(-50%);
						font-family: 'icomoon';
					}
				}
				.dropdown {
					visibility: hidden;
					opacity: 0;
					top: 100%;
					position: absolute;
					text-align: left;
					border-top: 2px solid $primary;
					box-shadow: 0 2px 10px -2px rgba(0,0,0,.1);
					border-left: 1px solid $gray-4;
					border-right: 1px solid $gray-4;
					border-bottom: 1px solid $gray-4;
					padding: 0px 0;
					margin-top: 20px;
					margin-left: 0px;
					background: $white;
					transition: 0.2s 0s;

					&.arrow-top {
						position: absolute;
						&:before {
							bottom: 100%;
							left: 20%;
							border: solid transparent;
							content: " ";
							height: 0;
							width: 0;
							position: absolute;
							pointer-events: none;
						}
						&:before {
							border-color: rgba(136, 183, 213, 0);
							border-bottom-color: $white;
							border-width: 10px;
							margin-left: -10px;
						}	
					}
					

					a {
						font-size: 16px;
						text-transform: none;
						letter-spacing: normal;
						transition: 0s all;
						color: $gray-800;
					}
					.active {
						> a {
							color: $white!important;
						}
					}
					> li {
						list-style: none;
						padding: 0;
						margin: 0;
						min-width: 200px;
						> a {
							padding: 9px 20px;
							display: block;
							&:hover {
								background: lighten($gray-4, 2%);
								color: $gray-1;
							}
						}

						&.has-children {
							> a {
								&:before {
									content: "\e315";
									right: 20px;
								}
							}
							> .dropdown, > ul {
								left: 100%;
								top: 0;
							}
							&:hover, &:active, &:focus {
								> a {
									background: lighten($gray-4, 2%);
									color: $gray-1;
								}
							}
						}
					}
				}
				
				&:hover, &:focus, &:active {
					> a {
						color: $white;
					}
				}
				&:hover, &:focus, &:active {
					cursor: pointer;
					> .dropdown {
						transition-delay: 0s;
						margin-top: 0px;
						visibility: visible;
						opacity: 1;


					}
				}
			}
			&.site-menu-dark {
				> li {
					> a {
						color: $black;
					}
				}
			}
		}
	}
}


// mobile menu

.site-mobile-menu {
	width: 300px;
	position: fixed;
	right: 0;
	z-index: 2000;
	padding-top: 20px;
	background: $white;
	height: calc(100vh);
	
	transform: translateX(110%);
	box-shadow: -10px 0 20px -10px rgba(0,0,0,.1);
	transition: .3s all ease-in-out;

	.offcanvas-menu & {
		transform: translateX(0%);
	}

	.site-mobile-menu-header {
		width: 100%;
		float: left;
		padding-left: 20px;
		padding-right: 20px;
		
		.site-mobile-menu-close {
			float: right;
			margin-top: 8px;
			span {
				font-size: 30px;
				display: inline-block;
				padding-left: 10px;
				padding-right: 0px;
				line-height: 1;
				cursor: pointer;
				transition: .3s all ease;
				&:hover {
					color: $gray-1;
				}
			}
		}
		.site-mobile-menu-logo {
			float: left;
			margin-top: 10px;
			margin-left: 0px;
			a {
				display: inline-block;
				text-transform: uppercase;
				img {
					max-width: 70px;
				}
				&:hover {
					text-decoration: none;
				}
			}
		}
	}

	.site-mobile-menu-body {
		overflow-y: scroll;
		-webkit-overflow-scrolling: touch;
		position: relative;
		padding: 0 20px 20px 20px;

		height: calc(100vh - 52px);
		padding-bottom: 150px;

	}
	.site-nav-wrap {
		padding: 0;
		margin: 0;
		list-style: none;
		// float: left;

		// width: 100%;
		// height: 100%;
		position: relative;

		a {
			padding: 10px 20px;
			display: block;
			position: relative;
			color: $gray-900;
			&:hover {
				color: $primary;
			}
		}
		li {
			position: relative;
			display: block;
			.active {
				> a {
					color: $primary;
				}
			}
		}
		.arrow-collapse {
			position: absolute;
			right: 0px;
			top: 10px;
			z-index: 20;
			width: 36px;
			height: 36px;
			text-align: center;
			cursor: pointer;
			border-radius: 50%;
			&:hover {
				background: $gray-100;
			}
			&:before {
				font-size: 12px;
				z-index: 20;
				font-family: "icomoon";
				content: "\f078";
				position: absolute;
				top: 50%;
				left: 50%;
				transform: translate(-50%, -50%) rotate(-180deg);
				transition: .3s all ease;
			}
			&.collapsed {
				&:before {
					transform: translate(-50%, -50%);	
				}
			}
		}
		> li {
			display: block;
			position: relative;
			float: left;
			width: 100%;
			
			> a {
				padding-left: 20px;
				font-size: 20px;
			}
			> ul {
				padding: 0;
				margin: 0;
				list-style: none;
				> li {
					display: block;
					> a {
						padding-left: 40px;
						font-size: 16px;
					}
					> ul {
						padding: 0;
						margin: 0;
						> li {
							display: block;
							> a {
								font-size: 16px;
								padding-left: 60px;			
							}
						}
					}
				}
			}
		}

		&[data-class="social"] {
			float: left;
			width: 100%;
			margin-top: 30px;
			padding-bottom: 5em;
			> li {
				width: auto;
				&:first-child {
					a {
						padding-left: 15px!important;
					}
				}
			}
		}

	}


}

.sticky-wrapper {
	position: absolute;
	z-index: 100;
	width: 100%;
	background: $white;

	& + .site-blocks-cover {
		// margin-top: 140px;
		margin-top: 96px;
	}
	.site-navbar {
		transition: .3s all ease;
		background: $white;
		.site-logo {
			a {
				color: $black;
			}
		}
		.site-menu {
			> li {
				display: inline-block;
				> a {
					&.active {
						color: $black;
						position: relative;
						&:after {
							height: 2px;
							background: $white;
							content: "";
							position: absolute;
							bottom: 0;
							left: 20px;
							right: 20px;
						}
					}
				}
			}
		}
	}
	&.is-sticky {
		.site-navbar {
			background: $white;
			box-shadow: 4px 0 20px -5px rgba(0,0,0,.2);
			.site-logo {
				a {
					color: $black;
				}
			}
			.site-menu {
				> li {
					display: inline-block;
					> a {
						padding: 5px 20px;
						color: $black;
						display: inline-block;
						text-decoration: none!important;
						
						&:hover {
							color: $primary;
							
						}
						&.active {
							&:after {
								background: $primary;
							}
						}
					}
					&.active {
						> a {
							color: $primary;
						}
					}
				}
			}
		}
	}
	.shrink {
		padding-top: 10px!important;
		padding-bottom: 10px!important;
	}


}