Skip to content
Snippets Groups Projects
index.scss 2.08 KiB
Newer Older
* {
    transition: s.$transition;
    font-family: s.$body-font;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    color: s.$body-color;
    position: relative;
button {
    background: none;
    border: none;
    outline: none;
}

a, button {
    font-weight: s.$weight-semi-bold;
    color: s.$primary;
    text-decoration: none;
    cursor: pointer;

    &:hover {
        color: rgba(s.$primary, 0.5);
    }
}

.content-container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    font-weight: s.$weight-bold;
}

h1 {
    font-size: fn.toRem(36);
    margin-bottom: fn.toRem(20);
    font-weight: s.$weight-xbold;
    &.underlined {
        position: relative;
        display: inline-block;

        &:after {
            content: ' ';
            position: absolute;
            right: -7px;
            bottom: 5px;
            z-index: -1;

            @include mx.breakpoint(large) {
                height: 24px;
                width: 120px;
        margin-bottom: fn.toRem(28);
    }
}

h2 {
    font-size: fn.toRem(24);
    margin-bottom: fn.toRem(16);

        margin-bottom: fn.toRem(24);
    font-size: fn.toRem(18);
    font-weight: s.$weight-semi-bold;
        font-size: fn.toRem(24);
        margin-bottom: fn.toRem(16);
    }
}

h4 {
    font-size: fn.toRem(16);
    margin-bottom: fn.toRem(10);
        font-size: fn.toRem(20);
        margin-bottom: fn.toRem(16);
    }