You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */ |
|
|
|
@keyframes pulse { |
|
from { |
|
transform: scale3d(1, 1, 1); |
|
} |
|
|
|
50% { |
|
transform: scale3d(1.05, 1.05, 1.05); |
|
} |
|
|
|
to { |
|
transform: scale3d(1, 1, 1); |
|
} |
|
} |
|
|
|
.pulse { |
|
animation-name: pulse; |
|
}
|
|
|