@import url(https://fonts.googleapis.com/css?family=Roboto:400,100,300,500,700,900);
@font-face {
  font-family: 'entypo';
  src: url("http://entypo.com/css/entypo.eot");
  src: url("http://entypo.com/css/entypo.eot?#iefix") format("embedded-opentype"), url("http://entypo.com/css/entypo.woff") format("woff"), url("http://entypo.com/css/entypo.ttf") format("truetype");
}
.entypo {
  margin-left: 1px;
  font-family: entypo;
  font-size: 200%;
  font-weight: normal;
  font-style: normal;
  line-height: 38px;
}

* {
  user-select: none;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  overflow: -moz-scrollbars-vertical;
  overflow-y: scroll;
}

body {
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  background-color: #333;
  color: white;
}

a {
  color: white;
  text-decoration: none;
  transition: all .2s ease-out;
}

.loading,
.blur {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
}

.loading {
  background-color: black;
  z-index: 999;
  text-align: center;
  opacity: 0.0;
  pointer-events: none;
  animation: loading 1.5s ease-out 1;
}

.blur {
  opacity: 0.75;
  transform: scale(1.3);
  animation: zoom 0.7s ease-out 0s 1;
}

.screen-wrapper {
  width: 14.5em;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.weather {
  margin-left: 1em;
  margin-bottom: -0.7em;
  animation: zoom-in 0.7s ease-out 0.25s 1, small-appear 0.7s ease-out 0.25s 1;
}

.clock,
.date {
  text-align: center;
}

.clock {
  font-size: 340%;
  font-weight: 100;
  animation: zoom-in 0.7s ease-out 0s 1, small-appear 0.7s ease-out 0s 1;
}
.clock b {
  font-weight: 500;
}

.weather {
  font-size: 75%;
}

.date {
  margin-bottom: 1.35em;
  font-size: 80%;
  font-weight: 400;
  animation: zoom-in 0.7s ease-out 0.25s 1, small-appear 0.7s ease-out 0.25s 1;
}

.icon {
  margin: 1.5em 1em;
  display: inline-block;
  position: relative;
  width: 2.5em;
  height: 2.5em;
  border-radius: 1.25em;
  border: 1px dashed white;
  text-align: center;
  animation: appear 0.7s ease-out 0s 1;
}
.icon:hover {
  background-color: rgba(255, 255, 255, 0.15);
}
.icon.notify, .icon.active {
  border-style: solid;
}
.icon.notify:before, .icon.active:before {
  content: '';
  display: block;
  position: absolute;
  right: -6px;
  top: -6px;
  width: 8px;
  height: 8px;
  background-color: limegreen;
  border-radius: 8px;
}
.icon.active:before {
  background-color: transparent;
}
.icon .title {
  margin-top: 10px;
  font-size: 10px;
  animation: appear 0.7s ease-out 0.25s 1;
}
.icon .title .entypo {
  line-height: 0;
}

.music-icon .title {
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  animation: marquee 8s linear infinite;
}
.music-icon .title:hover {
  animation-play-state: paused;
}
.music-icon .title .entypo {
  display: inline-block;
  margin-bottom: 4px;
}

.pagination {
  margin-top: 2em;
  padding: 0;
  text-align: center;
}
.pagination .page {
  display: inline-block;
}
.pagination .page a {
  display: block;
  width: 8px;
  height: 8px;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 8px;
}
.pagination .current a,
.pagination a:hover {
  background-color: white;
}

svg {
  display: block;
  position: absolute;
  top: -1px;
  left: -1px;
  width: 2.5em;
  height: 2.5em;
}
svg #border {
  fill-opacity: 0.0;
}
svg #loader {
  fill: #FFF;
  fill-opacity: 0.35;
}

@keyframes loading {
  from {
    opacity: 1.0;
  }
  to {
    opacity: 0.0;
  }
}
@keyframes zoom {
  from {
    transform: scale(2.05);
  }
  to {
    transform: scale(1.3);
  }
}
@keyframes zoom-in {
  from {
    transform: scale(0.6);
  }
  to {
    transform: scale(1);
  }
}
@keyframes small-appear {
  from {
    opacity: 0;
    margin-top: 150px;
  }
  to {
    opacity: 1;
    margin-top: 0;
  }
}
@keyframes appear {
  from {
    margin-top: 1000px;
  }
  to {
    margin-top: 1.5em;
  }
}
@keyframes marquee {
  0% {
    text-indent: 5em;
  }
  100% {
    text-indent: -20em;
  }
}