100-project-100-days-website/100_projects/28-show-random-image-every-x-second/css.css
2023-03-21 17:10:48 +03:00
Ask

40 lines
833 B
CSS

{ceb88ad555cff13c40bd9aa47828224f467d4814 true 833 css.css 0xc002a9ae70}

*{
box-sizing: border-box;
margin: 0;
padding: 0;
}
body{
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
height: 100vh;
position: relative;
background: linear-gradient(to bottom right, #2389da, #74ccf4, #5abcd8);
}
#myImg{
position: relative;
width: 800px;
height: 450px;
box-shadow: 10px 10px 5px rgba(0,0,0, .4);
transition: .3s;
}
body::before{
content: '';
width: calc(800px - 30px);
height: calc(450px - 30px);
border: 3px solid #e0ffff;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
z-index: 9999;
}
@media(max-width:767px){
#myImg{
width: 300px;
}
body::before{
width: calc(300px - 30px);
}
}