File "ep-content-toggle.scss"

Full path: /home/kosmetik/public_html/wp-content/plugins/elements-plus/assets/sass/ep-content-toggle.scss
File size: 957 B
MIME-type: text/plain
Charset: utf-8

Download   Open   Edit   Advanced Editor   Back

.ep-ct-switch {
  position: relative;
  display: inline-block;
  width: 60px;
	height: 34px;
	margin-bottom: 0;
	
	input {
		opacity: 0;
		width: 0;
		height: 0;

		&:checked + .ep-ct-slider:before {
			-webkit-transform: translateX(26px);
			-ms-transform: translateX(26px);
			transform: translateX(26px);
		}
	}

	.ep-ct-slider {
		position: absolute;
		cursor: pointer;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		-webkit-transition: .4s;
		transition: .4s;

		&:before {
			position: absolute;
			content: "";
			height: 26px;
			width: 26px;
			left: 4px;
			bottom: 4px;
			background-color: white;
			-webkit-transition: .4s;
			transition: .4s;
		}

		&.ep-ct-round {
			border-radius: 34px;

			&::before {
				border-radius: 50%;
			} 
		}
	}
}

.ep-ct-content-wrapper {
	position: relative;

	.ep-ct-content {
		display: none;

		&.active {
			display: block;
		}
	}
}

.ep-ct-switch-label {
	position: relative;
	top: 3px;
	margin: 0 7px;
}