/*
 * Copyright (c) 2024. Mathias Vitalis - Université de Bordeaux
 * @file carousel.css
 *
 * @lastModified 12/06/2024 11:22
 *
 * Distributed under the GNU GPL v2. For full terms see the file docs/COPYING.
 */

/* carousel.css */
.carouselContainer {
    margin: 20px 0;
}
.carouselContainer .content{
    padding:20px;
}
.carouselContainer .content img{
    border:1px solid rgba(0,0,0,0.25);
    border-radius: 5px;
}
.carouselContainer .swiper {
    width: 100%;
    height: 250px;
}

.carouselContainer .carousel-caption {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 10px;
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
}

:root {
    --swiper-navigation-size: 25px;
    --swiper-navigation-top-offset: 45%;
}