mirror of
https://github.com/avatao-content/frontend-tutorial-framework
synced 2025-01-16 19:51:56 +00:00
32 lines
326 B
SCSS
32 lines
326 B
SCSS
|
@keyframes heartbeat
|
||
|
{
|
||
|
0%
|
||
|
{
|
||
|
transform: scale( .75 );
|
||
|
}
|
||
|
20%
|
||
|
{
|
||
|
transform: scale( 1 );
|
||
|
}
|
||
|
40%
|
||
|
{
|
||
|
transform: scale( .75 );
|
||
|
}
|
||
|
60%
|
||
|
{
|
||
|
transform: scale( 1 );
|
||
|
}
|
||
|
80%
|
||
|
{
|
||
|
transform: scale( .75 );
|
||
|
}
|
||
|
100%
|
||
|
{
|
||
|
transform: scale( .75 );
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.logo {
|
||
|
animation: heartbeat 1s infinite;
|
||
|
}
|