<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import 'https://fonts.googleapis.com/css?family=Kreon:300';
.panel {
  transition: all 0.35s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translateX(-100%);
}
.panel .panellist li {
  transform: translateX(0);
  opacity: 0;
}
.panel.active {
  transform: translateX(0px);
}
.panel.active .panellist li {
  opacity: 1;
  transform: translateX(0);
}

body {
  background: #333;
}

.wrap {
  width: 768px;
  height: 1024px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  font-weight: 300;
  font-style: normal;
  font-family: "Kreon", serif;
}

.navlist {
  height: 24px;
  position: absolute;
  left: 25px;
  top: 40px;
}

.panel {
  width: 300px;
  height: 1024px;
  background-color: #252525;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 10;
}
.panel img.close {
  width: 24px;
  height: auto;
  position: absolute;
  top: 40px;
  left: 40px;
}
.panel img.close:hover {
  cursor: pointer;
}

.imghold {
  background: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/13034/sleepy_stock_cat.jpg") -300px 0 no-repeat;
  background-size: cover;
  width: 768px;
  height: 1024px;
}

.panellist {
  color: white;
  font-size: 24px;
  font-weight: normal;
  padding: 20vh 0 0 10%;
}

ul {
  list-style: none;
  margin: 1em 0;
}
ul li {
  line-height: 1.8;
}

.hamb {
  fill: #fff;
}
.hamb:hover {
  cursor: pointer;
}</pre></body></html>