Back to battles

#32

Band-aid

<div></div>
<div></div>
<style>
  body {
    background: #ffffff;
    display: grid;
    grid-template-columns: auto auto;
    place-content: center;
  }
  div {
    width: 50px;
    height: 200px;
  }

  div:nth-child(1) {
    rotate: 45deg;
    translate: 25px 0;
    background: #a3a368;
  }
  div:nth-child(2) {
    rotate: -45deg;
    translate: -25px 0;
    background: linear-gradient(
      #f3ac3c 75px,
      #fbe18c 75px 125px,
      #f3ac3c 125px
    );
  }
</style>

06

2/2