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

/*
    @AUTHOR : Nicolas BOUDOT

    PROPRIÉTÉ : LIST-STYLE
    Styles liés à la propriété list-style
*/

/*
    01 - XS
        List-style-type
            Base
            Formes
            Chiffres
            Lettres
        List-style-position
    02 - SM
    03 - MD
    04 - LG
    05 - XL
    06 - XXL
*/



/* -----------------
    01 - XS
        List-style-type
            Base
----------------- */

.lst-none {
    list-style-type: none;
}



/* -----------------
    01 - XS
        List-style-type
            Formes
----------------- */

.lst-disc {
    list-style-type: disc;
}

.lst-circle {
    list-style-type: circle;
}

.lst-square {
    list-style-type: square;
}



/* -----------------
    01 - XS
        List-style-type
            Chiffres
----------------- */

.lst-decimal {
    list-style-type: decimal;
}

.lst-decimal-leading-zero {
    list-style-type: decimal-leading-zero;
}

.lst-lower-roman {
    list-style-type: lower-roman;
}

.lst-upper-roman {
    list-style-type: upper-roman;
}



/* -----------------
    01 - XS
        List-style-type
            Lettres
----------------- */

.lst-lower-alpha {
    list-style-type: lower-alpha;
}

.lst-upper-alpha {
    list-style-type: upper-alpha;
}



/* -----------------
    01 - XS
        List-style-position
----------------- */

.lsp-inside {
    list-style-position: inside;
}

.lsp-outside {
    list-style-position: outside;
}
