Skip to content

Latest commit

 

History

History
34 lines (29 loc) · 551 Bytes

004.ups-n-downs.md

File metadata and controls

34 lines (29 loc) · 551 Bytes

Battle #1 - Pilot Battle

#4 - Ups n Downs

Link to problem

Result

My Solution

<div></div>
<div></div>
<div></div>
<style>
  body {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #62306D;
  }
   div {
     height: 100px;
     width: 100px;
     border-radius: 0 0 50% 50%;
     background: #F7EC7D;
     margin-top: 100px;
   }
  div:nth-child(2) {
    transform: rotate(180deg);
    margin-top: -100px
  }
</style>