Skip to content

Latest commit

 

History

History
38 lines (34 loc) · 662 Bytes

016_eye-of-the-tiger.md

File metadata and controls

38 lines (34 loc) · 662 Bytes

Battle #2 - Visibility

#16 - Eye of the Tiger

Link to the problem

result

<div class="a"></div>
<div class="b"></div>
<style>
  body {
    background: #0B2429;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  div {
    position: absolute;
  }
  .a {
    background: #998235;
    width: 200px;
    height: 200px;
    border-radius: 50% 0;
    transform: rotate(45deg);
  }
  .b {
    background: #0B2429;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 45px solid #F3AC3C;
    outline: 20px solid #0B2429;
  }
</style>