a
Data utworzenia: 12-11-2024 08:29:01
*{ margin: 0; padding: 0; box-sizing: border-box; } body{ font-size: 2rem; background-color: rgb(205, 205, 118); } .box{ width: 100px; height: 100px; background-color: brown; border: 2px solid white; box-shadow: 0 0 15px wheat; margin: 10px; } .container{ position: relative; width: 1000px; height: 1000px; } .box1{ position: absolute; background-color: rgb(133, 39, 161); top: 250px; left: 200px; width: 320px; height: 320px; } .box2{ position: absolute; background-color: rgb(54, 146, 153); top: 270px; left: 220px; width: 280px; height: 280px; } .box3{ position: absolute; background-color: rgb(146, 23, 23); top: 290px; left: 240px; width: 240px; height: 240px; } .box4{ position: absolute; background-color: rgb(15, 10, 159); top: 310px; left: 260px; width: 200px; height: 200px; } .box5{ position: absolute; background-color: chocolate; top: 330px; left: 280px; width: 160px; height: 160px; }