1
0
mirror of https://github.com/bigchaindb/site.git synced 2024-11-01 07:45:41 +01:00

nyan cleanup

This commit is contained in:
Matthias Kretschmann 2017-06-29 21:06:01 +02:00
parent d1af7935ca
commit 1c016cd25b
Signed by: m
GPG Key ID: 606EEEF3C479A91F
3 changed files with 5 additions and 4 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 13 KiB

After

Width:  |  Height:  |  Size: 38 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 38 KiB

View File

@ -1,6 +1,5 @@
.nyan {
position: relative;
background: rgba(#144f8d, .5);
&:before {
content: '';
@ -9,11 +8,11 @@
right: 0;
top: 0;
bottom: 0;
background: url('../img/nyan2.gif') no-repeat left center;
background: url('../img/nyan.gif') no-repeat left center;
background-size: 50%;
z-index: 0;
opacity: 0;
animation: nyan-fadein .6s ease-out forwards;
animation: nyan-appear .6s ease-out forwards;
}
code {
@ -22,12 +21,14 @@
}
}
@keyframes nyan-fadein {
@keyframes nyan-appear {
0% {
opacity: 0;
transform: translate3d(-5rem, 0, 0);
}
100% {
opacity: .4;
transform: translate3d(0, 0, 0);
}
}