Skip to content

Latest commit

 

History

History
54 lines (49 loc) · 1.19 KB

011-eye-of-sauron.md

File metadata and controls

54 lines (49 loc) · 1.19 KB

#11 Eye of Sauron

GO TO THE PROBLEM

#11 Eye of Sauron

Solutions

<div></div>
<style>
  body {
    background: #191210;
    display: grid;
    place-items: center;
  }
  div {
    height: 50px;
    width: 50px;
    background: #84271c;
    border: 25px solid #191210;
    border-radius: 50%;
    box-shadow: 0 0 0 20px #eca03d;
    position: relative;
  }
  div::before,
  div::after {
    content: '';
    position: absolute;
    height: 30px;
    width: 60px;
    border-radius: 0 0 50px 50px;
    border: 20px solid #eca03d;
    border-top: 0;
  }
  div::before {
    top: 25px;
    left: -125px;
  }
  div::after {
    top: -25px;
    right: -125px;
    transform: rotate(180deg);
  }
</style>
<p><a a><a b><style>body{background:#191210;display:grid;place-items:center}p{height:50;width:50;background:#84271c;border:25px solid#191210;border-radius:50%;box-shadow:0 0 0 20px#eca03d}[a],[b]{position:fixed;height:30;width:60;border-radius:0 0 50px 50px;border:20px solid#eca03d;border-top:0}[a]{top:150;left:50}[b]{top:100;right:50;transform:scale(-1)