/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 10 nov. 2019, 17:39:35
    Author     : Jean-Paul
*/

.blob {
    background: #FFF;
    border-radius: 5px;
    margin: 10px;
    height: 100%;
    width: 100%;

    box-shadow: 0 0 0 0 rgba(76, 190, 232, 1);
    transform: scale(1);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(76, 190, 232, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(76, 190, 232, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(76, 190, 232, 0);
    }
}