simple.chat.css Maven / Gradle / Ivy
The newest version!
#messages {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 40px;
overflow-y: auto;
padding: 10px;
}
.message {
background-color: #f0f0f0;
border-radius: 5px;
padding: 10px;
margin-bottom: 10px;
}
#form {
position: absolute;
left: 0;
right: 0;
bottom: 0;
display: flex;
margin: 0;
padding: 5px;
}
#message {
flex-grow: 1;
margin-right: 5px;
}
#disconnected-overlay {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5);
z-index: 999;
display: flex;
justify-content: center;
align-items: center;
color: white;
font-size: 24px;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy