cssx
Data utworzenia: 12-11-2024 08:32:06
*{ margin: 0; padding: 0; box-sizing: border-box; } body{ font-size: 2rem; background-color: beige; } .box{ width: 100px; height: 100px; background-color: rgb(0, 0, 0); border: 2px solid white; box-shadow: 0 0 15px wheat; margin: 10px; } .container{ position: relative; } .box1{ position: absolute; background-color: rgb(224, 123, 255); top: 50px; left: 50px; width: 400px; height: 400px; } .box2{ position: absolute; background-color: rgb(54, 146, 153); top: 75px; left: 75px; width: 350px; height: 350px; } .box3{ position: absolute; background-color: rgb(0, 255, 4); top: 100px; left: 100px; width: 300px; height: 300px; } .box4{ position: absolute; background-color: rgb(12, 192, 87); top: 125px; left: 125px; width: 250px; height: 250px; } .box5{ position: absolute; background-color: rgb(255, 18, 180); top: 150px; left: 150px; width: 200px; height: 200px; }