Light12306/Web12306/css/ui/chat/chat-float-tip.css

21 lines
371 B
CSS
Raw Normal View History

2014-07-25 22:28:51 +08:00
#chat_float_tip {
position: fixed;
z-index: 2;
right: 0;
bottom: 0;
2014-08-13 00:14:00 +08:00
background: linear-gradient(to bottom, #d17f2d, #C26B14);
2014-07-25 22:28:51 +08:00
color: #ffffff;
border: 1px solid #d67e29;
font-size: 14px;
padding: 10px;
2014-08-13 00:14:00 +08:00
cursor: pointer;
2014-07-25 22:28:51 +08:00
}
2014-08-13 00:14:00 +08:00
#chat_float_tip span {
font-weight: bold;
}
#chat_float_tip:hover {
background: linear-gradient(to bottom, #e48b31, #d17519);
}