Pour tout problème contactez-nous par mail : support@froggit.fr | La FAQ :grey_question: | Rejoignez-nous sur le Chat :speech_balloon:

Skip to content
Snippets Groups Projects
style.scss 11.28 KiB
@import "./theme.scss";

body {
    * {
        box-sizing: border-box;
        color: $dark_1;
        line-height: 1.3em;
    }
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    ul {
        margin: 0;
        padding: 0;
        list-style-type: none;
    }
    a {
        color: $blue_2;
        text-decoration: none;
        &:hover {
            color: $blue_3;
        }
    }

    blue {
        color: $blue_2;
    }

    .grid-3 {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
    }

    .bg-blue {
        background-color: $blue_2;
        color: white;
    }
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;

    .warning-banner {
        background: url("/assets/images/wallpaper_warning.svg");
        width: 100%;
        height: 40px;
        padding: 20px 10%;
        @include flex-center;
        strong {
            font-size: 18px;
            color: $blue_1;
        }
    }

    .image-carousel {
        overflow: hidden;
        @include flex-center;
        background-color: black;
        position: relative;
        img {
            position: absolute;
            max-width: 100%;
            max-height: 400px;
        }
        .carousel-bullets {
            position: absolute;
            bottom: 0;
            padding: 20px;