Тому, кто сияет ярче звёзд и согревает мягче солнца,
милорду Дориану Павусу
[html]
<div id="room">
<div id="letter"></div>
</div>
<style>
#room {
background:url("https://forumupload.ru/uploads/001a/65/51/120/143859.png") center center no-repeat;
z-index:1000;
width:670px;
height:407px;
overflow:visible;
transition:0.8s;
transition-timing-function:linear;
cursor:url('https://forumstatic.ru/files/0012/04/67/37517.gif'), pointer;
}
#letter {
z-index:3000;
margin-top:180px;
position:absolute;
margin-left:430px;
width:30px;
height:48px;
background:url("https://forumupload.ru/uploads/001a/65/51/120/88329.png") top center no-repeat;
background-size:cover;
transform: skew(35deg,-10deg);
box-shadow: -3px 3px 2px rgba(0,0,0,0.3);
transition:0.8s;
transition-timing-function:linear;
}
#letter:hover {
width:600px;
height:932px;
margin-top:0px!important;
margin-left:30px;
transform: none;
box-shadow: none;
transition:2s;
transition-timing-function:ease-in;
cursor:pointer;
}
#letter:hover~#room {
height:932px;
transition:0.8s;
transition-timing-function:linear;
}
#room:hover {
height:932px;
transition:0.8s;
transition-timing-function:linear;
}
#room:hover>#letter {
margin-top:442px;
transition:0.8s;
transition-timing-function:linear;
}
</style>
[/html]