<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*!
 * jQuery Accordion 0.0.1
 * (c) 2014 Victor Fernandez &lt;victor@vctrfrnndz.com&gt;
 * MIT Licensed.
 */

/* Requirements */

[data-accordion] [data-content] {
    overflow: hidden;
    max-height: 0;
}

/* Basic Theme */

[data-accordion] {
    line-height: 1;
	margin-bottom:10px;
	background:#eee;
	padding: 15px;
}

[data-control],
[data-content] &gt; * {
    border:none;
    
}

[data-content] [data-accordion] {
    border: 0;
    padding: 0;
}

[data-accordion] [data-control] {
    position: relative;
    padding-right: 30px;
	width:100%; text-align:left;
	font-size:24px; color:#666; font-weight:400; background:none; cursor:pointer;
}
:focus{ outline:none;}
article{ font-size:16px; color:#666; font-weight:400; line-height:normal; padding-left:10px; line-height:28px;}
[data-accordion] &gt; [data-control]:after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    font-size: 25px;
    font-weight: 200;
    color: #444;
    height: 30px;
    width:30px;
    background: url('../images/down.png') center center no-repeat;
}

[data-accordion].open &gt; [data-control]:after {
    background: url('../images/up.png') center center no-repeat;
}
[data-accordion].open &gt; [data-control]{ margin-bottom:25px;} </pre></body></html>