Community Central
Community Central
mNo edit summary
Tag: sourceedit
m (work pls)
Tag: sourceedit
Line 1: Line 1:
 
.chat-rc {
 
.chat-rc {
position:fixed;
+
position: fixed;
top:-235px;
+
top: -235px;
left:460px;
+
left: 460px;
width:400px;
+
width: 400px;
height:250px;
+
height: 250px;
background:#fff;
+
background: #fff;
border-radius:5px;
+
border-radius: 5px;
transition:.4s all linear;
+
transition: .4s all linear;
padding:10px;
+
padding: 10px;
z-index:9999;
+
z-index: 9999;
border:1px solid #ccc;
+
border: 1px solid #ccc;
 
}
 
}
 
.chat-rc:hover {
 
.chat-rc:hover {
top:5px;
+
top: 5px;
 
}
 
}
 
.chat-rc-container {
 
.chat-rc-container {
height:223px;
+
height: 223px;
border-bottom:1px solid #ccc;
+
border-bottom: 1px solid #ccc;
margin-bottom:5px;
+
margin-bottom: 5px;
overflow-y:auto;
+
overflow-y: auto;
color:rgb(58,58,58);
+
color: rgb(58,58,58);
 
}
 
}
 
.chat-rc-container ul {
 
.chat-rc-container ul {
list-style:square;
+
list-style: square;
margin:0 10px 0 20px;
+
margin: 0 10px 0 20px;
 
}
 
}
 
.chat-rc-header {
 
.chat-rc-header {
color:#000;
+
color: #000;
font-size:20px;
+
font-size: 20px;
text-align:center;
+
text-align: center;
line-height:28px;
+
line-height: 28px;
 
}
 
}

Revision as of 23:32, 10 April 2015

.chat-rc {
    position: fixed;
    top: -235px;
    left: 460px;
    width: 400px;
    height: 250px;
    background: #fff;
    border-radius: 5px;
    transition: .4s all linear;
    padding: 10px;
    z-index: 9999;
    border: 1px solid #ccc;
}
.chat-rc:hover {
    top: 5px;
}
.chat-rc-container {
    height: 223px;
    border-bottom: 1px solid #ccc;
    margin-bottom: 5px;
    overflow-y: auto;
    color: rgb(58,58,58);
}
.chat-rc-container ul {
    list-style: square;
    margin: 0 10px 0 20px;
}
.chat-rc-header {
    color: #000;
    font-size: 20px;
    text-align: center;
    line-height: 28px;
}