Skip to content

Latest commit

 

History

History
26 lines (22 loc) · 546 Bytes

109-curtain.md

File metadata and controls

26 lines (22 loc) · 546 Bytes

Battle #19 - Spacing

#109 - Curtain

Link to the problem

target

<div></div>
<style>
  body {
    background: #191919;
  }
  div {
    margin: 12px;
    width: 40px;
    height: 40px;
    background: #f6e59c;
    border-radius: 50%;
    position: absolute;
    box-shadow: 60px 0 #f6e59c, 120px 0 #f6e59c, 180px 0 #f6e59c, 0 60px #f6e59c, 60px 60px #f6e59c, 120px 60px #f6e59c,
      0 120px #f6e59c, 60px 120px #f6e59c, 0 180px #f6e59c;
  }
</style>