Skip to content

Latest commit

 

History

History
37 lines (31 loc) · 701 Bytes

130.md

File metadata and controls

37 lines (31 loc) · 701 Bytes

Target #130 (Letter O)

1° método

399 caracteres em 09/05/2024.

<div class="objeto"></div>
<div class="objeto sombra"></div>
<style>
  body {
    background-color: #926927;
  }
  .objeto {
    z-index: 2;
    position: absolute;
    top: 70px;
    left: 160px;
    width: 60px;
    height: 120px;
    border: 20px solid #FFFFFF;
    border-radius: 30px;
  }
  .sombra {
    z-index: 1;
    transform: translate(-20px);
    border: 20px solid #6D480A;
  }
</style>


Link para Target #130 (Letter O) em CSSBattle.dev.