<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
  background: black;
  font-family: "Raleway";
  font-weight: 300;
}

.container {
  position: relative;
  width: 880px;
  margin: 30px auto;
  display: table;
  visibility: hidden;
}

.header {
  color: #03aaee;
  font-size: 23px;
  display: inline;
}

.text {
  width: 80%;
  margin-left: 11%;
}

.temp {
  color: #87728e;
  font-size: 17px;
  margin-top: 4px;
  display: inline;
  float: right;
}

.reg-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  line-height: 1.45;
}

.snow {
  margin-top: 26px;
  margin-left: 40px;
  color: #03aaee;
}

.day {
  width: 250px;
  height: 550px;
  position: absolute;
  background-size: cover;
  visibility: visible;
  transition: opacity 1s ease-out, transform 1s;
}
.day:hover {
  transform: scale(1.1);
}
.container:hover .day {
  opacity: 0.3;
}
.container:hover .day:hover {
  opacity: 1;
}

.lines {
  width: 250px;
  margin-top: 200px;
}

.lines path {
  stroke: #03aaee;
  fill: none;
}

.day1 {
  background: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/28963/iso-1.jpg");
  left: 0px;
  /* transform: translate3d($left, 0, 0); */
  /* backface-visibility: hidden; */
  /* perspective: 1000px; */
}

.day2 {
  background: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/28963/iso-2.jpg");
  left: 310px;
  /* transform: translate3d($left, 0, 0); */
  /* backface-visibility: hidden; */
  /* perspective: 1000px; */
}

.day3 {
  background: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/28963/iso-3.jpg");
  left: 620px;
  /* transform: translate3d($left, 0, 0); */
  /* backface-visibility: hidden; */
  /* perspective: 1000px; */
}

.tI {
  opacity: 0;
}
:root.im-ready .tI {
  -webkit-animation: fadeIn 2.5s ease-out forwards;
          animation: fadeIn 2.5s ease-out forwards;
}

@-webkit-keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
.lines path {
  -webkit-animation: svgDash 0.4s 0.5s ease-out forwards;
          animation: svgDash 0.4s 0.5s ease-out forwards;
}

@-webkit-keyframes svgDash {
  to {
    stroke-dashoffset: 0;
    stroke-dasharray: 350px, 350px;
  }
}

@keyframes svgDash {
  to {
    stroke-dashoffset: 0;
    stroke-dasharray: 350px, 350px;
  }
}</pre></body></html>