$scale: 3;$color-base: #f46159; $color-star: #fbe069; *, *:before *:after { box-sizing: border-box; } .frame { position: absolute; top: 0; left: 0; right: 0; bottom: 0; width: 75px; height: 75px; margin: auto; border-radius: 100%; background: $color-base; transform: scale($scale); .star { position: absolute; top: 0; left: 0; right: 0; bottom: 0; width: 0; height: 0; margin: auto; border-width: 0 6px 16px; border-style: solid; border-color: transparent transparent $color-star; transform: translateY(-14px); &:before, &:after { content: ''; position: absolute; border-style: solid; border-color: transparent; } &:before { border-width: 15px 22px; border-bottom-color: $color-star; transform: translate(-16px, 1px) rotate(35deg); } &:after { border-width: 15px 22px; border-bottom-color: $color-star; transform: translate(-28px, 1px) rotate(-35deg); } } }