Light12306/Web12306/css/ui/chat/chat-server-select.css

63 lines
1.1 KiB
CSS
Raw Normal View History

2014-07-25 22:28:51 +08:00
#chat_server_select {
position: relative;
}
#chat_server_select > header {
position: absolute;
display: block;
width: 100%;
font-weight: bold;
}
#chat_server_select > article {
box-sizing: border-box;
overflow-y: auto;
position: absolute;
left: 10px;
right: 10px;
top: 30px;
bottom: 50px;
}
#chat_server_select > article h1 {
line-height: 30px;
background-color: #faddc1;
border-bottom: 1px solid #dea36a;
padding-left: 15px;
font-weight: bold;
font-size: 14px;
}
#chat_server_select > article ul {
overflow: hidden;
padding: 10px;
}
#chat_server_select > article li {
border: 1px solid #ccc;
border-radius: 5px;
margin-bottom: 5px;
padding: 7px;
cursor: pointer;
}
#chat_server_select > article li:hover {
background-color: #ffecda;
border-color: #d67e29;
}
2014-08-13 00:14:00 +08:00
#chat_server_select > article em {
margin-left: 10px;
color: #b28484;
}
2014-07-25 22:28:51 +08:00
#chat_server_select > article span {
color: gray;
float: right;
}
#chat_server_select > footer {
position: absolute;
bottom: 0;
}