Target (21/2/2024) 100% nocheats speedrun

100% solution for CSSBattle on February 21st, 2024
mail@pastecode.io avatar
unknown
html
7 months ago
659 B
4
Indexable
Never
<div id="a"></div>
<div id="c"></div>
<div class="d"></div>
<div class="e"></div>
<div class="f"></div>

<style>
  body{
    background: #ACDDF9;
    margin: 0;
  }
  div{
    background: #0A6B91;
    width: 200;
    height: 125;
    position: absolute;
  }
  #a{
    top: 88;
    left: 100;
    clip-path: polygon(80% 0%, 100% 30%, 100% 100%, 0 100%, 0 0);
  }
  #c{
    background: #ACDDF9;
    width: 100;
    height: 75;
    top: 113;
    left: 125;
    border-radius: 10px;
  }
  .d, .e{
    width: 5;
    height: 90;
    top: 100;
    left: 150;
  }
  .e{
    left: 195;
  }
  .f{
    height: 5;
    width: 200;
    top: 148;
    left: 100;
  }
</style>
Leave a Comment