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 1.34 KiB
Newer Older
peter_rabbit's avatar
peter_rabbit committed
body {
peter_rabbit's avatar
peter_rabbit committed
    * {
        box-sizing: border-box;
    }
    font-family: Arial, Helvetica, sans-serif;
peter_rabbit's avatar
peter_rabbit committed
    margin: 0;
    ul {
        margin: 0;
        padding: 0;
        list-style-type: none;
    }
peter_rabbit's avatar
peter_rabbit committed
}

main {
    background: url("../assets/images/wallpaper_binary.png");
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    header {
        width: 100%;
        nav {
            background-color: #fff1;
            ul {
                display: flex;
                padding: 0;
                margin: 0;
                list-style-type: none;
                li {
                    a {
                        display: flex;
                        padding: 10px 20px;
                        color: #b8b9c5;
                        font-weight: 500;
                        text-decoration: none;
                    }
                    &:hover,
                    &.active {
                        background-color: #fff2;
                        a {
                            color: white;
                        }
                    }
                }
            }
        }
    }
    #page-container {
        background-color: white;
        width: 1200px;
        max-width: 100%;
        flex: 1;
peter_rabbit's avatar
peter_rabbit committed
        @import "./pages/education/education.scss";
    }
    footer {
        width: 100%;
    }
peter_rabbit's avatar
peter_rabbit committed
}