<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
    overflow: hidden;
}

/* PC view */
@media only screen and (min-width: 760px) {
    footer#footer_mob {
        display: none;
    }

    footer#footer {
        height: 100px;
    }

    main {
        height: calc(100vh - 160px);
    }

    #map, #cities {
        height: 100%;
    }

    #map {
        width: 78%;
    }

    #cities {
        width: 22%;
    }
}

/* mobile view */
@media only screen and (max-width: 760px) {
    footer#footer_mob {
        height: 60px;
        background-color: #114A93;
    }

    footer#footer {
        display: none;
    }

    main {
        height: calc(100vh - 120px);
    }

    #map, #cities {
        height: 100%;
    }

    #map {
        width: 100%;
    }

    #cities {
        display: none;
    }

    #back_button {
        position: absolute;
        top: 20px;
        left: 20px;
        padding: 10px;
        z-index: 1001;
    }

    .dropdown {
        position: absolute;
        top: 60px;
        left: 20px;
        z-index: 1001;
    }

}

/*
button navbar
*/

nav#nav {
    height: 60px;
}

#nav.navbar {
    background-color: #114A93;
}

aside li, article li {
    list-style-type: square;
}

main article h2 {
    font-variant-caps: small-caps;
    margin-bottom: 0.7em;
    letter-spacing: 2px;
}

main article h4 {
    font-variant-caps: small-caps;
    margin-bottom: 0.5em;
    color: #114A93;
}

main article a {
    text-decoration: underline;
}

ul.legend {
    margin: 0em;
    padding: 0em;
}

ul.legend li {
    list-style: none;
}

ul.legend li:before {
    vertical-align: bottom;
    line-height: 20px;
    margin: 0em;
    padding: 0em;
}

ul.legend li.brigade:before {
    content: "â—";
    color: #114A93;
    font-size: 30px;
}

ul.legend li.lieutenance:before {
    content: "â—¼";
    color: #114A93;
    font-size: 20px;
}

ul.legend li.compagnie:before {
    content: "â—¼";
    color: #DA121A;
    font-size: 20px;
}

ul.legend li.direction:before {
    content: "â—¼";
    color: black;
    font-size: 20px;
}

.navbar .dropdown-menu {
    z-index: 1051; /* Plus haut que les modals Bootstrap */
}


/*
aside.php
 */

#head-aside {
    z-index: 2;
    background: #fff;
    padding-top: 1rem;
}

.aside-marker {
    padding-left: 25px;
    position: relative;
    list-style-image: url("images/markers/circle_blue.svg");
}

.aside-marker::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    background-size: contain;
    background-repeat: no-repeat;
}

.aside-marker &gt; span {
    cursor: pointer;
}

.aside-marker:hover &gt; span {
    font-weight: bold;
}

.marker-circle_blue::before {
    background-image: url('images/markers/circle_blue.svg');
}

.marker-circle_dark::before {
    background-image: url('images/markers/circle_dark.svg');
}

.marker-square_dark::before {
    background-image: url('images/markers/square_dark.svg');
}

.marker-square_red::before {
    background-image: url('images/markers/square_red.svg');
}

.marker-square_yellow::before {
    background-image: url('images/markers/square_yellow.svg');
}

.marker-triangle_dark::before {
    background-image: url('images/markers/triangle_dark.svg');
}

.marker-triangle_green::before {
    background-image: url('images/markers/triangle_green.svg');
}

.marker-circle_E0FFFF::before {
    background-image: url('images/markers/circle_E0FFFF.svg');
}

.marker-circle_ADD8E6::before {
    background-image: url('images/markers/circle_ADD8E6.svg');
}

.marker-circle_87CEFA::before {
    background-image: url('images/markers/circle_87CEFA.svg');
}

.marker-circle_87CEEB::before {
    background-image: url('images/markers/circle_87CEEB.svg');
}

.marker-circle_5F9EA0::before {
    background-image: url('images/markers/circle_5F9EA0.svg');
}

.marker-circle_4682B4::before {
    background-image: url('images/markers/circle_4682B4.svg');
}

.marker-circle_4169E1::before {
    background-image: url('images/markers/circle_4169E1.svg');
}

.marker-circle_1E90FF::before {
    background-image: url('images/markers/circle_1E90FF.svg');
}

.marker-circle_00BFFF::before {
    background-image: url('images/markers/circle_00BFFF.svg');
}

.marker-circle_0000FF::before {
    background-image: url('images/markers/circle_0000FF.svg');
}

.marker-circle_0000CD::before {
    background-image: url('images/markers/circle_0000CD.svg');
}

.marker-circle_00008B::before {
    background-image: url('images/markers/circle_00008B.svg');
}

details.details-custom {
    margin-bottom: 1rem;
    background-color: #f8f9fa;
    padding: 0.5rem;
    border: 1px solid #dee2e6;
    position: relative;
}

details.details-custom summary {
    font-weight: bold;
    cursor: pointer;
    padding: 0.5rem;
    background-color: #f8f9fa;
    border-radius: 0.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

details.details-custom summary:hover {
    background-color: #e9ecef;
}

details.details-custom .details-content {
    border-top: none;
    border-radius: 0 0 0.25rem 0.25rem;
}

details.details-custom .accordion-arrow {
    font-size: 1.25rem;
}

summary strong {
    flex-grow: 1;
    text-align: left;
}

details.details-legend {
    position: relative;
}

details.details-legend summary {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.details-legend summary h6 {
    margin-right: 1rem;
}

details.details-legend .accordion-arrow {
    margin-top: -0.5rem;
    right: 0;
}

details.details-legend[open] .accordion-arrow {
    transform: rotate(180deg);
}

.highlight {
    color: white;
    background-color: black;
    transition: background-color 2s;
}

.btn &gt; i.fa-solid {
    transition: transform 1s;
}

.btn:hover &gt; i.fa-solid {
    transform: rotate(360deg) scale(1.5);
}

/*
dashboard.php
 */

#dashBoardModal * {
    scroll-behavior: smooth;
    /*scroll-margin-top: 80px;*/
}

#dashBoardModalLabel {
    text-align: center;
}
</pre></body></html>