Your IP : 216.73.217.112


Current Path : /home/z/i/e/zieirix/www/templates/it_medical/scss/medical/
Upload File :
Current File : /home/z/i/e/zieirix/www/templates/it_medical/scss/medical/_social.scss

.g-social {
	a {
		display: inline-block;
		padding: 10px;
		background: none;
		color: $top-text-color;
		font-size: 0.9rem;
		margin-left: -3px;
		border-right: 1px solid lighten($top-background-color, 10%);
		&:first-child {
			border-left: 1px solid lighten($top-background-color, 10%);
			margin-left: 0;
		}
		&:hover {
			color: $accent-color-1;
		}
	}
}

#g-copyright {
	.g-social {
		a {
			padding: 0 10px;
			color: $copyright-text-color;
			margin: 0;
			border: none;
			&:first-child {
				border: none;
			}
			&:hover {
				color: $accent-color-1;
			}
		}
	}
}

#g-copyright {
	.g-block {
		&:last-child {
			.g-social {
				margin-right: -10px;
				@include breakpoint(mobile-only) {
					margin-right: 0;
				}
			}
		}
	}
}

// RTL Adjustments
[dir="rtl"] {
	.g-social {
		a {
			border-right: none;
			border-left: 1px solid lighten($top-background-color, 10%);
			&:first-child {
				border-right: 1px solid lighten($top-background-color, 10%);
			}
		}
	}

	#g-copyright {
		.g-block {
			&:last-child {
				.g-social {
					margin-left: -10px;
					margin-right: 0;
					@include breakpoint(mobile-only) {
						margin-left: 0;
					}
				}
			}
		}
	}
}