Back to battles

#21

SitePoint Logo

<div></div>
<div></div>
<style>
  body {
    background: #222;
    display: grid;
    place-content: center;
    grid-auto-flow: column;
  }
  div {
    width: 80px;
    height: 30px;
    rotate: 45deg;
    position: relative;
  }

  div:nth-child(1) {
    background: #f2994a;
    left: 3px;
    border-radius: 0 5px 0px 10px;
  }

  div:nth-child(2) {
    background: #2d9cdb;
    left: -5px;
    bottom: 1px;
    border-radius: 0px 10px 0 5px;
  }

  div::after {
    content: '';
    width: 30px;
    height: 71px;
    position: absolute;
  }
  div:nth-child(1)::after {
    background: #f2994a;
    bottom: 29px;
  }
  div:nth-child(2)::after {
    background: #2d9cdb;
    left: 50px;
    top: 29px;
  }
</style>

04

8/8