100-project-100-days-website/100_projects/70-javascript-zoom-effect/style.css

23 lines
409 B
CSS
Raw Normal View History

2023-05-02 19:37:11 +03:00
* {
box-sizing: border-box;
}
body {
background-color: #663399;
display: flex;
align-items: center;
justify-content: center;
margin: 0;
min-height: 100vh;
}
#container {
box-shadow: 3px 3px 4px rgba(0, 0, 0, 0.3);
height: 500px;
width: 500px;
overflow: hidden;
}
img {
transform-origin: center center;
object-fit: cover;
height: 100%;
width: 100%;
}