File "heatbox.css"

Full Path: /home/jlklyejr/public_html/post-date/wp-content/plugins/kirki/kirki-packages/settings/dist/heatbox.css
File size: 6.37 KB
MIME-type: text/plain
Charset: utf-8

/* Init */
.heatbox-wrap,
.heatbox-wrap * {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.heatbox-admin.has-header .update-nag {
	display: none;
}

.heatbox-admin.has-header #wpcontent {
	padding-left: 0 !important;
	padding-right: 0 !important;
}

.heatbox-admin.has-header .wrap {
	margin: 0;
}

/* Tab navigation */
.heatbox-tab-nav {
	padding: 20px 0;
	margin: 10px 0 0 0;
}

.heatbox-tab-nav li {
	display: inline-flex;
	padding: 10px 30px 10px 0;
	font-weight: 600;
	font-size: 20px;
}

.heatbox-tab-nav li a {
	color: #23282d;
	text-decoration: none;
}

.heatbox-tab-nav li.active a {
	color: #0073aa;
}

/* Divider */
.heatbox-divider {
	width: 100%;
	height: 1px;
	margin: 40px 0;
	background: #ccc;
}

@media screen and (max-width: 991px) {
	.heatbox-divider {
		margin: 20px 0;
	}
}

/* Container */
.heatbox-container {
	max-width: 1200px;
	padding: 0 20px;
}

.heatbox-container-wide {
	max-width: 1400px;
}

.heatbox-container-center {
	margin: 0 auto;
}

/* Header */
.heatbox-header {
	background: #fff;
	padding-top: 40px;
	border-bottom: 1px solid #ddd;
}

.heatbox-header.heatbox-has-tab-nav .logo-container {
	margin-bottom: 0;
}

.heatbox-header .logo-container {
	display: flex;
	align-items: center;
	margin-bottom: 40px;
}

.heatbox-header .logo-container div {
	width: 50%;
}

.heatbox-header .logo-container .heatbox-logo-wide img {
	width: 180px;
}

.heatbox-header .logo-container img {
	width: 100px;
	height: auto;
	float: right;
}

.heatbox-header .tab-navigation {
	margin: -20px 0 20px 0;
	padding: 0;
}

.heatbox-header .tab-navigation li {
	display: inline-flex;
	padding: 10px 30px 10px 0;
	font-weight: 600;
	font-size: 20px;
}

.heatbox-header .tab-navigation li a {
	color: #23282d;
	text-decoration: none;
}

.heatbox-header .tab-navigation li.active a {
	color: #0073aa;
}

/* Title */
.heatbox-wrap .title {
	margin: 0;
	padding: 0;
	font-size: 34px;
	font-weight: 700;
	line-height: 1;
}

.heatbox-wrap .subtitle {
	margin: 20px 0 0 0;
	padding: 0;
	font-size: 20px;
	line-height: 1;
}

/* Version */
.heatbox-wrap .version {
	font-size: 50%;
	opacity: 0.6;
	font-weight: 600;
	background: #ccc;
	border-radius: 5px;
	padding: 5px 12px;
	line-height: 1;
}

/* 2 Column Layout - Wrapper */
.heatbox-column-container {
	display: flex;
	flex-wrap: wrap;
}

/* 2 Column Layout - Main Content */
.heatbox-main {
	width: 73%;
	margin-right: 2%;
}

/* 2 Column Layout - Sidebar */
.heatbox-sidebar {
	width: 25%;
}

/* 2 Column Layout - Responsiveness */
@media screen and (max-width: 991px) {
	.heatbox-main, .heatbox-sidebar {
		width: 100%;
	}
	.heatbox-main {
		margin-right: 0;
	}
}

/* Panels */
.heatbox-admin-panel {
	display: none;
}

/* Heatbox */
.heatbox {
	background: #fff;
	margin-bottom: 20px;
	border: 1px solid #ddd;
}

.heatbox h2 {
	border-bottom: 1px solid #ddd;
	margin: 0;
	padding: 20px;
}

.heatbox.is-grouped h2 {
	border-top: 1px solid #ddd;
}

.heatbox.is-grouped h2:first-child {
	border-top: none;
}

.heatbox h3 {
	margin: 0 0 10px 0;
}

.heatbox p {
	margin: 0 0 20px 0;
}

.heatbox-content {
	margin: 0;
	padding: 20px;
}

.heatbox-content p:first-child {
	margin-top: 0;
}

/* Margins */
.heatbox-margin-top {
	margin-top: 20px;
}

.heatbox-margin-bottom {
	margin-bottom: 20px;
}

/* Paddings */
.heatbox-margin-top {
	margin-top: 20px;
}

.heatbox-margin-bottom {
	margin-bottom: 20px;
}

/* Buttons */
.heatbox-wrap .button-larger {
	padding: 5px 20px;
}

/* Settings */
.heatbox .form-table {
	margin: 0;
}

.heatbox .form-table th,
.heatbox .form-table td {
	padding: 20px;
	vertical-align: top;
}

.heatbox .form-table th .description {
	margin-top: 10px;
}

.heatbox .setting-fields {

}

.heatbox .setting-fields .setting-field {
	margin-bottom: 7px;
}

.heatbox .setting-fields .setting-field:last-of-type {
	margin-bottom: 0;
}

/* Submit button */
.heatbox-wrap p.submit {
	margin: 20px 0;
	padding: 0;
}

/**
 * Checkboxes & Radio Buttons
 * Copied & modified from https://codepen.io/KenanYusuf/pen/PZKEKd/
 */
.heatbox .label {
	display: inline-block;
	position: relative;
	cursor: pointer;
}

.heatbox .label input {
	position: absolute;
	z-index: -1;
	opacity: 0;
}

.heatbox .label .indicator {
	position: absolute;
	top: 0;
	left: 0;
	height: 20px;
	width: 20px;
	background-color: #e6e6e6;
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

.heatbox .radio-label .indicator {
	border-radius: 50%;
}

.heatbox .label:hover input ~ .indicator,
.heatbox .label input:focus ~ .indicator {
	background-color: #ccc;
}

.heatbox .label input:checked ~ .indicator {
	background-color: #007cba;
}

.heatbox .label:hover input:not([disabled]):checked ~ .indicator,
.heatbox .label input:checked:focus ~ .indicator {
	background-color: #00669b;
}

.heatbox .label input:disabled ~ .indicator {
	background-color: #e6e6e6;
	opacity: 0.6;
	pointer-events: none;
}

.heatbox .label .indicator::after {
	display: none;
	position: absolute;
	content: "";
}

.heatbox .label input:checked ~ .indicator::after {
	display: block;
}

.heatbox .checkbox-label {
	padding-left: 30px;
}

.heatbox .checkbox-label .indicator::after {
	left: 8px;
	top: 4px;
	width: 3px;
	height: 8px;
	border: solid #fff;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

.heatbox .checkbox-label input:disabled ~ .indicator::after {
	border-color: #7b7b7b;
}

.heatbox .radio-label .indicator::after {
	left: 7px;
	top: 7px;
	height: 6px;
	width: 6px;
	border-radius: 50%;
	background-color: #fff;
}

.heatbox .radio-label input:disabled ~ .indicator::after {
	background-color: #7b7b7b;
}

/* Call to action */
.heatbox-cta-container.is-attached {
	padding: 20px;
	background: #fff;
	margin-top: -20px;
	margin-bottom: 20px;
	border: 1px solid #ddd;
	border-top: none;
}

.heatbox-cta {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px;
	font-weight: 700;
	border: 1px solid #ddd;
	background: #fff;
}

.heatbox-cta > * {
	margin: 0 !important;
}

.heatbox-cta .button {
	padding: 5px 15px !important;
}

.heatbox-cta.primary {
	background: #197cff;
	color: #fff;
	border: none;
}

.heatbox-cta.secondary {
	background: #f1f1f1;
}

.heatbox-cta.primary .button {
	background: rgba(0, 45, 96, 0.5);
}

.heatbox-cta.primary .button:hover {
	background: rgba(0, 45, 96, 0.6);
}

/* RTL */
.rtl .heatbox-header .logo-container img {
	float: left;
}

.rtl .heatbox-main {
	margin-right: 0;
	margin-left: 2%;
}

.rtl .heatbox .label .indicator {
	left: auto;
	right: -30px;
}