1
0
mirror of https://github.com/exane/not-gwent-online synced 2024-11-20 11:26:54 +00:00

animation stuff

This commit is contained in:
exane 2015-07-04 16:18:22 +02:00
parent 9be8175bf9
commit 37917ba52d

View File

@ -53,12 +53,28 @@ $game-height: 800px;
.card:first-child {
margin-left: 0 !important;
}
&.active {
box-shadow: 0px 0px 15px #ffbb0b !important;
//box-shadow: 0px 0px 15px #ffbb0b !important;
animation: WoobWoob linear 2s;
animation-iteration-count: infinite;
/*
&:hover {
box-shadow: 0px 0px 30px #ffd135 !important;
}
*/
}
}
@keyframes WoobWoob {
0% {
box-shadow: 0px 0px 15px #ffbb0b !important;
}
50% {
box-shadow: 0px 0px 40px #ffd135 !important;
}
100% {
box-shadow: 0px 0px 15px #ffbb0b !important;
}
}