Merge pull request #2161 from awesomerobot/master
dialing back the animations I added previously
This commit is contained in:
commit
e8c53d171a
|
@ -283,27 +283,14 @@ blockquote {
|
|||
animation: spinner .25s;
|
||||
}
|
||||
|
||||
//loading spinner drop-in animation
|
||||
//loading spinner fade-in
|
||||
@-webkit-keyframes spinner {
|
||||
0% {
|
||||
margin: 0px auto 30px auto;
|
||||
opacity: 0;
|
||||
from {opacity: 0}
|
||||
to {opacity: 1}
|
||||
}@keyframes fade {
|
||||
from {opacity: 0}
|
||||
to {opacity: 1}
|
||||
}
|
||||
100% {
|
||||
margin: 20px auto 30px auto;
|
||||
opacity: 1;
|
||||
}
|
||||
}@keyframes modal {
|
||||
0% {
|
||||
margin: 0px auto 30px auto;
|
||||
opacity: 0;
|
||||
}
|
||||
100% {
|
||||
margin: 20px auto 30px auto;
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -102,24 +102,11 @@ animation: modal .25s;
|
|||
//fade in and animate up
|
||||
|
||||
@-webkit-keyframes modal {
|
||||
0% {
|
||||
margin-top: 100px;
|
||||
opacity: 0;
|
||||
}
|
||||
100% {
|
||||
margin-top: 0;
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
}@keyframes modal {
|
||||
0% {
|
||||
margin-top: 100px;
|
||||
opacity: 0;
|
||||
}
|
||||
100% {
|
||||
margin-top: 0;
|
||||
opacity: 1;
|
||||
}
|
||||
from {opacity: 0}
|
||||
to {opacity: 1}
|
||||
}@keyframes fade {
|
||||
from {opacity: 0}
|
||||
to {opacity: 1}
|
||||
}
|
||||
|
||||
.modal-body {
|
||||
|
|
Loading…
Reference in New Issue