Skip to content

Latest commit

 

History

History
59 lines (55 loc) · 1023 Bytes

76-beeee.md

File metadata and controls

59 lines (55 loc) · 1023 Bytes

Battle #13 - Clip

#76 - Beeee

Link to the problem

target

<main>
  <div class="left"></div>
  <div class="right"></div>
  <div class="bee"></div>
</main>
<style>
  body {
    background: #998235;
    display: grid;
    place-items: center;
  }
  main {
    width: 150;
    height: 150;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .left {
    background: #fff;
    border-radius: 50px 50px 0 50px;
  }
  .right {
    background: #fff;
    border-radius: 50px 50px 50px 0;
  }
  .bee {
    grid-column: 1 / 3;
    border-radius: 50px;
    background: linear-gradient(
      to right,
      #191919 25px,
      #eff33c 25px 35px,
      #191919 35px 60px,
      #eff33c 60px 70px,
      #191919 70px 95px,
      #eff33c 95px
    );
  }
  .bee::after {
    content: "";
    position: absolute;
    top: 170;
    right: 145;
    height: 15;
    width: 15;
    border-radius: 50%;
    background: #191919;
  }
</style>