Shadow Wraith Sculpting Tutorials

The Dark Art of Shadow Manipulation

Learn how to craft the perfect shadow to conceal yourself from the prying eyes of the mortal world, or create a wraith-like aura to spook your enemies.

Prerequisites

Lesson 1: Creating a Shadow Wraith

/* Example Code: Shadow Wraith Creation */
#shadow_wraith {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background-color: #000000;
  border: 2px solid #333;
  border-radius: 10px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.8);
  transition: opacity 0.8s ease-in-out;
}
.shadow-wraith-scene {
  background-image: linear-gradient(to top, #333 0%, #000 100%);
  position: relative;
  width: 100%;
  height: 100%;
  padding: 20px;
  border: 4px solid #333;
  border-radius: 10px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.8);
  transition: opacity 0.8s ease-in-out;
}
.shadow-wraith-scene::after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: '';
  height: 100%;
  width: 100%;
  background-color: #000000;
  border: 2px solid #333;
  border-radius: 10px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.8);
  transition: opacity 0.8s ease-in-out;
}