<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
  background-color: #333;
  color: white;
  margin: 3em;
  font-family: "Dosis", Helvetica, Arial sans-serif;
}

.wrap {
  display: flex;
  justify-content: center;
}

.todayDisplay {
  width: 400px;
  height: 415px;
  position: relative;
  background: #C0BFD6 url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/13034/background.svg") top center no-repeat;
  background-size: cover;
}

.readout {
  position: absolute;
  bottom: 40px;
  right: 60px;
  text-align: center;
  font-weight: 300;
}
.readout .temp {
  font-size: 6rem;
  margin: 0;
  padding: 0;
}
.readout .forecast {
  font-size: 2rem;
  margin: 0;
  padding: 0;
  text-transform: uppercase;
}

svg#icon {
  width: 185px;
  height: auto;
  position: absolute;
  top: 40px;
  left: 20px;
}

.cloud {
  fill: #585c6e;
}

.drop {
  fill: #3688ad;
  animation: drip 2s linear both infinite, fade 2s linear both infinite;
}

.drop:nth-of-type(1) {
  animation-delay: 1s;
}

.drop:nth-of-type(2) {
  animation-delay: 2.5s;
}

.drop:nth-of-type(3) {
  animation-delay: 3.5s;
}

@keyframes drip {
  0% {
    transform: translateY(-55px);
  }
  100% {
    transform: translateY(90px);
  }
}
@keyframes fade {
  0%, 90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}</pre></body></html>