22 CSS Stacked Card Designs

Isometric Tower

Server rack tower — graphite metal slabs with green LED indicators stacked in isometric projection.

Pure CSS MIT licensed

Isometric Tower the 16th of 22 designs in the 22 CSS Stacked Card Designs collection. The design is implemented in pure CSS — no JavaScript required. Copy the HTML and CSS panels below into your project. Because the demo is pure CSS, it works in any framework or templating engine you happen to use. The design honours prefers-reduced-motion and uses real semantic markup, so it ships accessibility-ready out of the box.

Live preview

Open in playground

The code

<div class="scd-iso">
  <div class="scd-iso__c" style="--i: 0"><span class="scd-iso__led"></span>WEB-01</div>
  <div class="scd-iso__c" style="--i: 1"><span class="scd-iso__led"></span>API-02</div>
  <div class="scd-iso__c" style="--i: 2"><span class="scd-iso__led"></span>DB-03</div>
  <div class="scd-iso__c" style="--i: 3"><span class="scd-iso__led"></span>CACHE-04</div>
</div>
.scd-iso {
  position: relative; width: 200px; height: 180px; margin: 6px auto 0;
  transform: rotateX(55deg) rotateZ(-30deg); transform-style: preserve-3d;
}
.scd-iso__c {
  position: absolute; left: 50%; top: 50%;
  width: 130px; height: 28px; margin: -14px 0 0 -65px;
  background: linear-gradient(180deg, #4a4a52 0%, #2a2a32 100%);
  color: #cad3da;
  display: flex; align-items: center; gap: 10px;
  padding: 0 12px;
  font: 700 10px ui-monospace, monospace;
  letter-spacing: 0.16em;
  border: 1px solid #1a1a20;
  border-radius: 2px;
  box-shadow: 0 4px 0 #1a1a20, inset 0 1px 0 #6a6a72;
  transform: translateZ(calc(var(--i) * 28px));
}
.scd-iso__led {
  width: 6px; height: 6px; border-radius: 50%;
  background: #3eff7f;
  box-shadow: 0 0 6px #3eff7f, inset 0 0 1px rgba(255,255,255,0.6);
}

Search CodeFronts

Loading…