46 lines
838 B
CSS
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);
|
|
}
|