HEX
Server: Apache/2.4.52 (Ubuntu)
System: Linux WebLive 5.15.0-79-generic #86-Ubuntu SMP Mon Jul 10 16:07:21 UTC 2023 x86_64
User: ubuntu (1000)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /var/www/html/wpprm_err/wp-content/themes/ronneby/assets/less.lib/components/accordion-box.less
/* 
    Created on : 10.01.2015, 11:35:28
    Author     : DFD
	Styles for : Accordion
*/
ul.accordion {
	margin: 0 0 22px 0;
	border-bottom: none;
	padding: 0;
	list-style: none;

	li {
		 margin-bottom: 3px;
		 background: transparent;
		 .transition(~"background .3s ease-in-out, border-color .3s ease-in-out");
		 
		&:last-child {
			.title {
				border-bottom-width: 0;
			}
		}

		.title {
			.block();
			.rel();
			height: auto;
			line-height: 1.6;
			padding: 15px 0 15px 35px;
			cursor: pointer;
			border-bottom: 1px solid @border-color;
			.icon {
				@s: 18px;
				.abs();
				left: 0;
				top: 50%;
				margin-top: -@s / 2;
				.block();
				width: @s;
				height: @s;
				background: transparent;
				border: 2px solid @border-color;
				.rounded(50%);
				.transition(~"background .3s ease-in-out, border-color .3s ease-in-out");

				&:before {
					content: "";
					.block();
					width: @s/3;
					height: 2px;
					.abs();
					left: 50%;
					top: 50%;
					margin-top: -1px;
					margin-left: -(@s/6);
					background: @border-color;
				}
				&:after {
					content:"";
					.block();
					width: 2px;
					height: @s/3;
					.abs();
					left: 50%;
					top: 50%;
					margin-top: -(@s/6);
					margin-left: -1px;
					background: @border-color;
					.opacity(1);
					.transition(opacity .3s ease-in-out);
				}
			}
		}
		.content {
			.hide();
			.rel();
			padding: 15px 0; 
			color: @font-site-light-color;
		}
		&.active {

			.title {
				color: @second-site-light-color;

				.icon {
					background: @second-site-light-color;
					border-color: @second-site-light-color;
					&:after {
						background: @main-site-dark-color;
						.opacity(0);
					}
				}
			}
			.icon-wrap i {
				color: @main-site-dark-color;
			}
			.content {
				.block();
			}
		}
		p {
			margin: 0;
		}
	}
}