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

/*
    @AUTHOR : Nicolas BOUDOT

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



body.utils_todo .utils_todo {
    position: relative;
}

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

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