@mixin centerer { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); } html, body { height: 100%; background: #03a9f4; position: relative; } .icon { width: 120px; height: 120px; border-radius: 25%; @include centerer; } .icon-wonderlist { background: #fff linear-gradient(to bottom, #eaa16b, #aa623d); } .inner { width: 102px; height: 102px; border-radius: 20px; background: linear-gradient(to bottom, #fefefe, #f4eae5); @include centerer; box-shadow: 0 5px 1px 0px rgba(0, 0, 0, 0.1); } .ribbon { width: 72px; height: 88px; border-top-left-radius: 2px; border-top-right-radius: 2px; background: red; position: absolute; top: -1px; left: 50%; transform: translate(-50%, 0); background: linear-gradient(to bottom, #ee3d29, #fa543a 5%, #ed492e 20%, #e73a20 100%); &:before, &:after { content: ""; display: block; width: 0; height: 0; position: absolute; bottom: -18px; } &:before { border-top: 9px solid #e73a20; border-left: 18px solid #e73a20; border-bottom: 9px solid transparent; border-right: 18px solid transparent; left: 0; } &:after { border-top: 9px solid #e73a20; border-left: 18px solid transparent; border-bottom: 9px solid transparent; border-right: 18px solid #e73a20; right: 0; } } .star { width: 0; height: 0; border-bottom: 18px solid #f9f4f3; border-right: 6px solid transparent; border-left: 6px solid transparent; position: absolute; left: 50%; top: 26px; transform: translate(-50%, 0); &:before, &:after { content: ""; display: block; width: 0; height: 0; position: absolute; } &:before { border-bottom: 15px solid #f9f4f3; border-right: 22px solid transparent; border-left: 22px solid transparent; transform: rotate(-36deg); top: 16px; left: -24px; } &:after { border-bottom: 15px solid #f9f4f3; border-right: 22px solid transparent; border-left: 22px solid transparent; transform: rotate(36deg); top: 16px; right: -24px; } }