EngineGP/template/css/chatm.css
Sergei Solovev b59003e559 Reformat code
This update contains code reformatting to meet PHP standards.
2023-11-12 21:12:42 +03:00

208 lines
3.4 KiB
CSS

/* Mini chat by Zalkarbek */
fieldset {
border: 0;
margin: 0;
padding: 0;
}
hr {
background: #e9e9e9;
border: 0;
-moz-box-sizing: content-box;
box-sizing: content-box;
height: 1px;
margin: 0;
min-height: 1px;
}
.clearfix {
*zoom: 1;
}
/* For IE 6/7 */
.clearfix:before, .clearfix:after {
content: "";
display: table;
}
.clearfix:after {
clear: both;
}
#bspanel-minichat {
bottom: 0;
font-size: 12px;
left: 24px;
position: fixed;
width: 330px;
z-index: 100;
}
#bspanel-minichat header {
background: #293239;
border-radius: 5px 5px 0 0;
color: #fff;
cursor: pointer;
padding: 13px 15px;
}
#bspanel-minichat h4:before {
background: #1a8a34;
border-radius: 50%;
content: "";
display: inline-block;
height: 8px;
margin: 0 8px 0 0;
width: 8px;
}
.users_online {
background: #1a8a34;
width: 9px;
height: 9px;
position: absolute;
left: 3px;
margin-top: 5px;
border-radius: 50%;
cursor: pointer;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.20), 0 0 5px #1a8a346b;
animation: anim 0.5s infinite alternate;
}
#bspanel-minichat h4 {
font-size: 12px;
}
#bspanel-minichat h5 {
font-size: 10px;
}
#bspanel-minichat fieldset {
padding: 24px;
}
#bspanel-minichat input[type="text"] {
border: 1px solid #ccc;
border-radius: 3px;
padding: 8px;
outline: none;
width: 234px;
}
.chat-message-counter {
background: #e62727;
border: 1px solid #fff;
border-radius: 50%;
display: none;
font-size: 12px;
font-weight: bold;
height: 28px;
left: 0;
line-height: 28px;
margin: -15px 0 0 -15px;
position: absolute;
text-align: center;
top: 0;
width: 28px;
}
.chat-close {
background: #1b2126;
border-radius: 50%;
color: #fff;
display: block;
float: right;
font-size: 10px;
height: 16px;
line-height: 16px;
margin: 12px 10px 0 0;
text-align: center;
width: 16px;
}
.chat {
background: #fff;
}
.chat-history {
height: 252px;
padding: 8px 24px;
overflow-y: scroll;
overflow-x: hidden;
}
.chat-message {
margin: 16px 0;
}
.chat-message img {
border-radius: 50%;
float: left;
}
.chat-message-content {
margin-left: 56px;
}
.chat-time {
float: right;
font-size: 10px;
}
.chat-feedback {
font-style: italic;
margin: 0 0 0 80px;
}
.float {
position: fixed;
width: 60px;
height: 60px;
bottom: 40px;
left: 40px;
background-color: #25d366;
color: #FFF;
border-radius: 50px;
text-align: center;
font-size: 30px;
box-shadow: 2px 2px 3px #999;
z-index: 100;
}
.bhover:hover {
opacity: 0.7;
}
.img-block {
width: 108px;
float: left;
margin-right: 12px;
}
div > div > a .image {
position: relative;
height: 80px;
width: 80px;
border: 4px solid #24292c;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
background-color: #24292c;
float: left;
overflow: hidden;
background-size: contain !important;
background-repeat: no-repeat !important;
text-align: center;
}
.notice_chat__check {
background: #FF5722;
width: 8px;
height: 8px;
position: absolute;
margin-top: -4px;
margin-left: 5px;
border-radius: 50%;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.20), 0 0 5px lime;
animation: notice_anim 0.5s infinite alternate;
}
/* Mini chat by Zalkarbek */