Skip to content

Latest commit

 

History

History
36 lines (31 loc) · 576 Bytes

015.overlap.md

File metadata and controls

36 lines (31 loc) · 576 Bytes

Battle #2 - Visibility

#15 - Overlap

Link to problem

Result

My Solution

<div left></div>
<div right></div>
<style>
  body {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #09042A;
  }
  div {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: transparent;
  }
  [left] {
    translate: 125px;
    box-shadow: -100px 0px #7B3F61;
  }
  [right] {
    translate: -125px;
    box-shadow: 100px 0px #E78481;
  }
</style>