/* -------------
    SOMMAIRE
------------- */

/*
    @AUTHOR : Nicolas BOUDOT

    STATUS : TODO
    Classe utilitaires pour faire ressortir les éléments mis en dur qu'il reste à faire (en dev ou en inté)
*/



body.todo .todo {
    position: relative;
}

/* Animation en keyframe qui fait clignotter le fond en rouge */
body.todo .todo::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: red;
    z-index: -1;
    animation: todo 1s linear infinite;
}

@keyframes todo {
    50% {
        opacity: 0;
    }
}
