Back to battles

#110

Sunrays

<div a></div>
<div b></div>
<div c></div>
<div d></div>
<div e></div>
<div f></div>
<style>
  body {
    background: #d25b70;
  }
  div {
    width: 100px;
    height: 10px;
    background: #f2e09f;
    position: absolute;
    border-radius: 10px;
    top: 195px;
    left: 80px;
    transform-origin: 120px;
  }

  [a] {
    box-shadow: 140px 0 #f2e09f;
  }

  [b] {
    rotate: 60deg;
  }
  [c] {
    rotate: 90deg;
  }
  [d] {
    rotate: 30deg;
  }
  [e] {
    rotate: 120deg;
  }
  [f] {
    rotate: 150deg;
  }
</style>

19

5/8