Sha256: 26b1d0219a26e02d6380f031202856a11297974b06d93c9c22de07f80492ebf1
Contents?: true
Size: 1.63 KB
Versions: 4
Compression:
Stored size: 1.63 KB
Contents
--- --- {% include styling/font.css %} body { overflow: hidden; transition: background-color 1s; background-color: white; } .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
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
picklecore-0.11.0 | assets/css/error-page.css |
picklecore-0.10.0 | assets/css/error-page.css |
picklecore-0.9.0 | assets/css/error-page.css |
picklecore-0.8.0 | assets/css/error-page.css |