tarnacki css
Data utworzenia: 05-11-2024 07:19:50
*{ margin: 0; padding: 0; box-sizing: border-box; } body{ font-family: "Freckle Face", system-ui; font-weight: 400; font-style: normal; font-size: 20px; color: orange; } .square{ width: 200px; height: 200px; background-color: #000000; border: 2px solid rgb(255, 137, 3); box-shadow: 2px 2px 15px rgb(190, 26, 26); margin: 5px; } .container{ display: flex; justify-content: center; align-items: center; height: 500px; } .s1{ display: flex; justify-content: center; align-items: center; background-color: gray; } .s2{ display: flex; justify-content: flex-end; align-items: flex-end; } .s3{ display: flex; justify-content: flex-end; background-color: #fff; } .s4{ display: flex; align-items: center; background-color: #3d3434e8; }