Skip to content

Latest commit

 

History

History
53 lines (48 loc) · 1.07 KB

019-cube.md

File metadata and controls

53 lines (48 loc) · 1.07 KB

#19 Cube

GO TO THE PROBLEM

#19 Cube

Solutions

<div class="side-left"></div>
<div class="side-center"></div>
<div class="side-right"></div>
<style>
  body {
    background: #0b2429;
  }
  div {
    position: absolute;
  }
  .side-left,
  .side-right {
    top: 80px;
    width: 70px;
    height: 70px;
  }
  .side-left {
    left: 130px;
    background: #998235;
    transform: skewY(-45deg);
  }
  .side-right {
    left: 200px;
    background: #1a4341;
    transform: skewY(45deg);
  }
  .side-center {
    top: 135px;
    left: 150px;
    background: #f3ac3c;
    width: 100px;
    height: 100px;
    transform: rotate(45deg);
  }
</style>
<a l><a c><a r><style>*{background:#0b2429}a{position:fixed;top:135;left:150;background:#f3ac3c;width:100;height:100;transform:rotate(45deg)}[l],[r]{top:80;width:70;height:70}[l]{left:130;background:#998235;transform:skewY(-45deg)}[r]{left:200;background:#1a4341;transform:skewY(45deg)