profile.scss 2.66 KB
@import "../../vars";
@import "../../mixins";


// header
.header-profile {
    color: $vactiveOrange;
    position: relative;

    &:after {
        background-image: url("data:image/svg+xml,%3Csvg width='20' height='16' viewBox='0 0 20 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M13.1954 5.77778C13.1954 7.93323 11.4481 9.68056 9.29264 9.68056C7.1372 9.68056 5.38986 7.93323 5.38986 5.77778C5.38986 3.62233 7.1372 1.875 9.29264 1.875C11.4481 1.875 13.1954 3.62233 13.1954 5.77778ZM12.922 10.2736C14.2324 9.21444 15.0704 7.59397 15.0704 5.77778C15.0704 2.5868 12.4836 0 9.29264 0C6.10166 0 3.51486 2.5868 3.51486 5.77778C3.51486 7.66592 4.42056 9.34253 5.82122 10.3968C3.52498 11.1822 1.55468 12.6704 0.166945 14.6048C-0.268123 15.2112 0.201641 16 0.948009 16C1.28171 16 1.59025 15.8303 1.78937 15.5625C3.5537 13.1899 6.37865 11.6527 9.56261 11.6527C12.7466 11.6527 15.5715 13.1899 17.3358 15.5625C17.535 15.8303 17.8435 16 18.1772 16C18.9236 16 19.3933 15.2112 18.9583 14.6048C17.4942 12.5639 15.3816 11.0198 12.922 10.2736Z' fill='%23F2994A'/%3E%3C/svg%3E");
    }
}

//profile
.account-top-links {
    padding-top: 16px;
}

.account-title {
    font-weight: 700;
    font-size: 48px;
    line-height: 100%;
    margin-top: 40px;
}

.account-content {
    display: flex;
    margin-top: 40px;
}

.account-left {
    display: flex;
    flex-direction: column;
    max-width: 245px;
    width: 100%;
}

.account-tabs {
    display: flex;
    flex-direction: column;
    margin-top: 0;
    padding-left: 20px;

    > * {
        margin-bottom: 20px;
        margin-right: 0;
    }

    &__item {
        font-family: 'Montserrat';
        font-style: normal;
        font-weight: 600;
        font-size: 16px;
        line-height: 22px;

        &.active {
            position: relative;
            font-weight: 600;

            &:before {
                position: absolute;
                content: "";
                background-image: url("data:image/svg+xml,%3Csvg width='8' height='14' viewBox='0 0 8 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0.224995 13.7722C0.524988 14.0759 1.01137 14.0759 1.31137 13.7722L8 7L1.31137 0.227805C1.01137 -0.0759354 0.524988 -0.0759354 0.224995 0.227805C-0.0749983 0.531546 -0.0749983 1.02401 0.224995 1.32775L5.82726 7L0.224995 12.6723C-0.0749983 12.976 -0.0749983 13.4685 0.224995 13.7722Z' fill='%23F2994A'/%3E%3C/svg%3E");
                background-repeat: no-repeat;
                background-size: cover;
                width: 9px;
                height: 16px;
                top: 2px;
                left: -20px;
            }
        }

    }
}