Files
postcardForCodeOnTheNapkin/style.css
2025-12-29 12:31:50 +03:00

23 lines
252 B
CSS

body{
user-select: none;
background: whitesmoke;
}
canvas{
position:absolute;
top:0px;
left:0px;
z-index:0;
}
a{
position:absolute;
top:20px;
left:20px;
z-index:1;
}
img{
transition: all 0.5s ease-out;
}
img:hover{
transform: scale(1.3);
}