<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
 * Made by Erik Terwan
 * 24th of November 2015
 * MIT License
 *
 *
 * If you are thinking of using this in
 * production code, beware of the browser
 * prefixes.
 */
 
#mobileMenu #title{
	width: 100%;
	float: left;
	text-align: left;
	margin-bottom: -50px;
    margin-left: 60px;
	margin-top: -8px;
    font-size: 30px;
	font-weight: bold;
	letter-spacing: 3px;
}
 
#mobileMenu #mobileLogo{
	width: 100%;
	float: right;
	text-align: right;
	margin-bottom: -45px;
	margin-right: 50px;
	margin-top: -14px;
	letter-spacing: 3px;
	font-size: 18px;
}
 
#mobileMenu #mobileLogo img{
    margin-top: -30px;
}

#mobileMenu
{
	display: block;
	position: relative;
	top: 25px;
	left: 30px;

	z-index: 1;

	-webkit-user-select: none;
	user-select: none;
}

#mobileMenu input
{
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  left: -5px;
  
  cursor: pointer;
  
  opacity: 0; /* hide this */
  z-index: 2; /* and place it over the hamburger */
  
  -webkit-touch-callout: none;
}

/*
 * Just a quick hamburger
 */
#mobileMenu span
{
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  
  border-radius: 3px;
  
  z-index: 1;
  
  transform-origin: 4px 0px;
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}

#mobileMenu span:first-child
{
  transform-origin: 0% 0%;
}

#mobileMenu span:nth-last-child(2)
{
  transform-origin: 0% 100%;
}

/* 
 * Transform all the slices of hamburger
 * into a crossmark.
 */
#mobileMenu input:checked ~ span
{
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
}

/*
 * But let's hide the middle one.
 */
#mobileMenu input:checked ~ span:nth-last-child(3)
{
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

/*
 * Ohyeah and the last one should go the other direction
 */
#mobileMenu input:checked ~ span:nth-last-child(2)
{
  transform: rotate(-45deg) translate(0, -1px);
}

/*
 * Make this absolute positioned
 * at the top left of the screen
 */
#menu
{
  position: absolute;
  width: calc(100% - 50px);
  height: 100vh;
  margin: -115px 0 0 -50px;
  padding: 50px;
  padding-top: 125px;
  
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  /* to stop flickering of text in safari */
  
  transform-origin: 0% 0%;
  transform: translate(-100%, 0);
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
}

@media screen and (min-width:801px){
	#menu{
		width: 300px !important;
		text-align: left !important;
		transition-duration: 0.5s;
	}
}

#menu li
{
	padding: 10px 0;
	font-size: 22px;
	text-align: center;
	transition-duration: 0.5s;
}

/*
 * And let's slide it in from the left
 */
#mobileMenu input:checked ~ ul
{
  transform: none;
}</pre></body></html>