TeryokhinAS_PIbd21/css/index_style.css
2023-11-27 17:58:55 +03:00

16 lines
327 B
CSS

img {
transition: 0.3s;
border: 5px solid black;
border-radius: 10px;
}
img:hover {
-moz-transform: scale(1.1);
-webkit-transform: scale(1.1);
transform: scale(1.1);
box-shadow: 0 0 15px 10px rgba(255, 123, 178, 0.5);
}
li:hover {
transition: transform 500ms;
transform: translateY(-8px);
}