Sha256: 6abc4107f6d2c334b45022a748044951e1dbb462e2bdaead434c82c26645d8c5

Contents?: true

Size: 1.63 KB

Versions: 7

Compression:

Stored size: 1.63 KB

Contents

---
---

{% include styling/font.css %}

body {
  overflow: hidden;
  background-color: {%- include styling/theme-color.css -%};
}

.error {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: "Open Sans";
  color: white;
}

.error p {
  font-size: 1.4em;
}

.error a {
  color: white;
}

.error a:hover {
  color: rgb(206, 206, 206);
}

.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-delay: 0.5s;
}

.animated.delay {
  animation-delay: 1s;
}

@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInRightBig {
  from {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.fadeInRightBig {
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
picklecore-0.15.5 assets/css/error-page.css
picklecore-0.15.4 assets/css/error-page.css
picklecore-0.15.3 assets/css/error-page.css
picklecore-0.15.2 assets/css/error-page.css
picklecore-0.15.1 assets/css/error-page.css
picklecore-0.15.0 assets/css/error-page.css
picklecore-0.14.0 assets/css/error-page.css