<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* This code is only meant for previewing your Reflow design. */
}
section li{
    margin:0 0 10px;
}
.wrapper{
    overflow:hidden;
}
section{
    padding:30px 30px 30px 80px;
    -moz-transition:all 200ms ease-in;
    -webkit-transition:all 200ms ease-in;
    -o-transition:all 200ms ease-in;
    transition:all 200ms ease-in;

}
nav{
	position: fixed;
	top: 0;
	left: 0;
	width: 250px;
	height: 100%;
	margin: 0 0 0 -250px;
	-moz-transition: all 200ms ease-in;
	-webkit-transition: all 200ms ease-in;
	-o-transition: all 200ms ease-in;
	transition: all 200ms ease-in;
}
nav ul{
	width: 250px;
	height: 100%;
	padding: 0;
	margin: 0;
	list-style: none;
	background-color: #228B22;
	overflow: hidden;
	background-image: -webkit-linear-gradient(270deg,rgba(1,255,109,1.00) 0%,rgba(65,91,0,0.84) 100%);
	background-image: -moz-linear-gradient(270deg,rgba(1,255,109,1.00) 0%,rgba(65,91,0,0.84) 100%);
	background-image: -o-linear-gradient(270deg,rgba(1,255,109,1.00) 0%,rgba(65,91,0,0.84) 100%);
	background-image: linear-gradient(180deg,rgba(1,255,109,1.00) 0%,rgba(65,91,0,0.84) 100%);
}
nav li{
	margin: 0;
	background-color: #FFFFFF;
}
nav a{
	color: #FFFFFF;
	font-size: 1em;
	font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, sans-serif;
	text-decoration: none;
	display: block;
	padding: 12px 15px;
	font-weight: 500;
	letter-spacing: 2px;
	border-bottom: 1px solid #333;
}
nav a:hover{
	background: #f6f6f6;
}
label{
	display: block;
	font-family: 'helvetica neue', helvetica, arial, sans-serif;
	font-weight: 700;
	background: #33CC33;
	width: 42px;
	height: 42px;
	line-height: 42px;
	color: #FFFFFF;
	text-align: center;
	font-size: 2em;
	line-height: 1.1em;
	position: fixed;
	top: 10px;
	left: 10px;
	-moz-transition: all 200ms ease-in;
	-webkit-transition: all 200ms ease-in;
	-o-transition: all 200ms ease-in;
	transition: all 200ms ease-in;
	z-index: 500;

}
input[type="checkbox"]{
    display:none;
}
input[type="checkbox"]:checked ~ nav{
    margin:0;
}
input[type="checkbox"]:checked ~ label{
	left: 260px;
	color: #E1F5E1;
}
input[type="checkbox"]:checked ~ section{
	-webkit-transform: translate3d(260px, 0, 0);
	-moz-transform: translate3d(260px, 0, 0);
	-o-transform: translate3d(260px, 0, 0);
	transform: translate3d(260px, 0, 0);
	margin-top: 1em;
}

nav end
</pre></body></html>