DEV Community

Cover image for CSS Battle #2 level #16
Yash Harkhani
Yash Harkhani

Posted on • Updated on

CSS Battle #2 level #16

Link: https://cssbattle.dev/play/16

<p b><p a>
<style>
  *{
    background: #0B2429;
    margin: 0;
    position: fixed;
  }
  p[a] {
    background: #0B2429;
    width: 50;
    height: 50;
    border-radius: 50%;
    box-shadow: 0px 0px 0px 45px #F3AC3C, 0px 0px 0px 65px #0B2429, 0px 0px 0px 75px #998235;
    top: 125;
    left: 175;
  }
  p[b]{
    width: 0;
    height: 0;
    border: 65px solid transparent;
    border-right-color: #998235;
    top: 85;
    left: -7;
    -webkit-box-reflect: right 154px;
  }
</style>
Enter fullscreen mode Exit fullscreen mode

Oldest comments (0)