Skip to content

Latest commit

 

History

History
44 lines (38 loc) · 758 Bytes

159.md

File metadata and controls

44 lines (38 loc) · 758 Bytes

Target #159 (Portal)

1° método

462 caracteres em 27/06/2024.

<div class="quadrado"></div>
<div class="faixa1"></div>
<div class="faixa1 faixa2"></div>
<style>
  body {
    background: #F5D6B4;
  }
  div {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    background: #D86F45;
  }
  .quadrado {
    width: 150px;
    height: 150px;
  }
  .faixa1 {
    width: 250px;
    height: 50px;
    box-shadow: 250px 50px 1 1;
  }
  .faixa2 {
    transform: rotate(90deg);
  }
</style>


Link para Target #159 (Portal) em CSSBattle.dev.