Light12306/Web12306/css/ui/chat/chat-float-tip.css
2015-10-21 12:40:04 +08:00

46 lines
838 B
CSS

#chat_float_tip {
position: fixed;
z-index: 2;
right: 0;
bottom: 0;
color: #ffffff;
border: 1px solid #d67e29;
font-size: 14px;
cursor: pointer;
line-height: 14px;
background: linear-gradient(to bottom, #d17f2d, #C26B14);
transition: all ease-in-out 0.2s;
}
#chat_float_tip > div:nth-child(1) {
margin-right: 5px;
border-right: 1px solid #FFE5CA;
height: 100%;
position: absolute;
left: 0;
top: 0;
padding: 10px 7px 10px 7px;
box-sizing: border-box;
cursor: pointer;
}
#chat_float_tip > div:nth-child(2) {
height: 100%;
padding: 10px 10px 10px 10px;
margin-left: 20px;
cursor: pointer;
width: 120px;
}
#chat_float_tip.off {
right: -140px;
}
#chat_float_tip span {
font-weight: bold;
}
#chat_float_tip > div:hover {
background: linear-gradient(to bottom, #e48b31, #d17519);
}